Browse Source

Configure Continuous Integration ....

master
hypaas 6 months ago
parent
commit
f3abc7c061
  1. 4
      modules/test/src/main/resources/domains/LogEntity.xml
  2. 3
      modules/test/src/main/resources/views/ServiceUser-grid.xml
  3. 6
      modules/test/src/main/resources/views/actionGroup.xml
  4. 14
      modules/test/src/main/resources/views/export-form.xml
  5. 1
      src/main/resources/application.properties

4
modules/test/src/main/resources/domains/LogEntity.xml

@ -24,6 +24,10 @@
<string actOverwrite="false" title="应用" copy="true" massUpdate="false" name="app" isJudg="false"/> <string actOverwrite="false" title="应用" copy="true" massUpdate="false" name="app" isJudg="false"/>
<integer actOverwrite="false" title="存储阈值" copy="true" massUpdate="false" name="threshold" isJudg="false"/> <integer actOverwrite="false" title="存储阈值" copy="true" massUpdate="false" name="threshold" isJudg="false"/>
<enum title="备份周期" massUpdate="false" ref="module.BackupCycle" name="backupCycle" copy="true"/> <enum title="备份周期" massUpdate="false" ref="module.BackupCycle" name="backupCycle" copy="true"/>
<string actOverwrite="false" title="密码" copy="true" massUpdate="false" name="password" isJudg="false"/>
<string actOverwrite="false" title="确认密码" copy="true" massUpdate="false" name="confirmPassword" isJudg="false"/>
<datetime actOverwrite="false" title="开始时间" massUpdate="false" name="startTime" copy="true" isJudg="false"/>
<datetime actOverwrite="false" title="结束时间" massUpdate="false" name="endTime" copy="true" isJudg="false"/>
<string actOverwrite="false" copy="true" massUpdate="false" name="address" isJudg="false"/> <string actOverwrite="false" copy="true" massUpdate="false" name="address" isJudg="false"/>
</entity> </entity>
</domain-models> </domain-models>

3
modules/test/src/main/resources/views/ServiceUser-grid.xml

@ -1,6 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<object-views xmlns="http://hypaas.com/xml/ns/object-views" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://hypaas.com/xml/ns/object-views http://hypaas.com/xml/ns/object-views/object-views_5.3.xsd"> <object-views xmlns="http://hypaas.com/xml/ns/object-views" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://hypaas.com/xml/ns/object-views http://hypaas.com/xml/ns/object-views/object-views_5.3.xsd">
<grid canMove="false" canNew="true" title="业务用户操作日志" model="Log.LogEntity" canDelete="true" edit-icon="true" canArchive="false" editable="false" canSave="false" freeSearch="all" name="ServiceUser-grid" width="large" customSearch="true"> <grid canMove="false" canNew="true" title="业务用户操作日志" model="Log.LogEntity" canDelete="true" edit-icon="true" canArchive="false" editable="false" canSave="false" freeSearch="all" name="ServiceUser-grid" width="large" customSearch="true">
<toolbar>
<button onClick="action.view.Export.Log" title="导出" name="导出"/>
</toolbar>
<field search-field="true" canSuggest="true" name="levelNum" title="告警级别"/> <field search-field="true" canSuggest="true" name="levelNum" title="告警级别"/>
<field search-field="true" canSuggest="true" name="userAuthDesc" title="用户角色"/> <field search-field="true" canSuggest="true" name="userAuthDesc" title="用户角色"/>
<field type="string" search-field="true" canSuggest="true" name="userId" title="用户名"/> <field type="string" search-field="true" canSuggest="true" name="userId" title="用户名"/>

6
modules/test/src/main/resources/views/actionGroup.xml

@ -14,6 +14,12 @@
<view name="LogConfig-grid" type="grid"/> <view name="LogConfig-grid" type="grid"/>
<view name="LogConfig-form" type="form"/> <view name="LogConfig-form" type="form"/>
</action-view> </action-view>
<action-view name="action.view.Export.Log" model="Log.LogEntity" title="日志导出">
<view name="export-form" type="form"/>
</action-view>
<action-method name="action.method.system.logExport" model="Log.LogEntity">
<call method="exportLog" class="com.system.log.controller.LogController"/>
</action-method>
<action-view name="action.view.SecurityAuditUser.Log" model="Log.LogEntity" title="安全审计员"> <action-view name="action.view.SecurityAuditUser.Log" model="Log.LogEntity" title="安全审计员">
<view name="SecurityAuditUser-grid" type="grid"/> <view name="SecurityAuditUser-grid" type="grid"/>
<view name="SecurityAuditUser-form" type="form"/> <view name="SecurityAuditUser-form" type="form"/>

14
modules/test/src/main/resources/views/export-form.xml

@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<object-views xmlns="http://hypaas.com/xml/ns/object-views" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://hypaas.com/xml/ns/object-views http://hypaas.com/xml/ns/object-views/object-views_5.3.xsd">
<form title="导出表单" model="Log.LogEntity" canSave="false" name="export-form" width="large">
<toolbar>
<button onClick="action.method.system.logExport" title="保存并导出" name="保存并导出"/>
</toolbar>
<panel title="导出信息填写" itemSpan="6" showFrame="true" name="panel_12">
<field required="true" canSuggest="true" name="password" title="密码"/>
<field required="true" canSuggest="true" name="confirmPassword" title="确认密码"/>
<field canSuggest="true" name="startTime" title="开始时间"/>
<field canSuggest="true" name="endTime" title="结束时间"/>
</panel>
</form>
</object-views>

1
src/main/resources/application.properties

@ -428,5 +428,6 @@ application.gatewaycontext=/lowcode-portal-logmanage/

Loading…
Cancel
Save