Browse Source

Configure Continuous Integration ....

master
hypaas 5 months ago
parent
commit
84996b38a3
  1. 15
      modules/test/src/main/resources/domains/LogConfig.xml
  2. 2
      modules/test/src/main/resources/domains/LogEntity.xml
  3. 11
      modules/test/src/main/resources/domains/LogStatus.xml
  4. 1
      src/main/resources/application.properties

15
modules/test/src/main/resources/domains/LogConfig.xml

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<domain-models xmlns="http://hypaas.com/xml/ns/domain-models" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://hypaas.com/xml/ns/domain-models http://hypaas.com/xml/ns/domain-models/domain-models_5.2.xsd">
<module name="Log" package="Log" table-prefix="" repo-package=""/>
<entity hashAll="false" logUpdates="true" persistable="true" name="LogConfig" cacheable="false" lang="java" strategy="SINGLE">
<string actOverwrite="false" title="日志起始时间" copy="true" massUpdate="false" name="logStartTime" isJudg="false"/>
<string actOverwrite="false" title="日志结束时间" copy="true" massUpdate="false" name="logEndTime" isJudg="false"/>
<string actOverwrite="false" title="备份大小" copy="true" massUpdate="false" name="size" isJudg="false"/>
<enum title="日志状态" massUpdate="false" ref="module.LogStatus" name="status" copy="true"/>
<string actOverwrite="false" title="备份时间" copy="true" massUpdate="false" name="backupTime" isJudg="false"/>
<string actOverwrite="false" title="记录类型" copy="true" massUpdate="false" name="recordType" isJudg="false"/>
<integer actOverwrite="false" title="存储阈值" copy="true" massUpdate="false" name="threshold" isJudg="false"/>
<integer actOverwrite="false" title="备份周期" copy="true" massUpdate="false" name="backupCycle" isJudg="false"/>
<string actOverwrite="false" title="备份开始日期" copy="true" massUpdate="false" name="backupStartTime" isJudg="false"/>
</entity>
</domain-models>

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

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<domain-models xmlns="http://hypaas.com/xml/ns/domain-models" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://hypaas.com/xml/ns/domain-models http://hypaas.com/xml/ns/domain-models/domain-models_5.2.xsd">
<module name="Log" package="Log" table-prefix="" repo-package=""/>
<entity hashAll="false" logUpdates="true" persistable="true" supportWf="false" name="LogEntity" cacheable="false" lang="java" strategy="SINGLE" table="sys_log">
<entity hashAll="false" logUpdates="true" persistable="true" name="LogEntity" cacheable="false" lang="java" strategy="SINGLE" table="sys_log">
<string actOverwrite="false" copy="true" column="CONTENT" massUpdate="false" name="content" isJudg="false"/>
<string nullable="true" actOverwrite="false" copy="true" column="DEPT" massUpdate="false" name="dept" isJudg="false"/>
<string nullable="true" actOverwrite="false" copy="true" column="EXMSG" massUpdate="false" name="exceptionMessage" isJudg="false"/>

11
modules/test/src/main/resources/domains/LogStatus.xml

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<domain-models xmlns="http://hypaas.com/xml/ns/domain-models" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://hypaas.com/xml/ns/domain-models http://hypaas.com/xml/ns/domain-models/domain-models_5.2.xsd">
<module name="com.module.enmus" package="module"/>
<enum name="LogStatus">
<item name="waitBackup" title="待备份" value="待备份"/>
<item name="alreadyBackup" title="已备份" value="已备份"/>
<item name="alreadyRecovery" title="已恢复" value="已恢复"/>
<item name="alreadyDelete" title="已删除" value="已删除"/>
<item name="backupFail" title="备份失败" value="备份失败"/>
</enum>
</domain-models>

1
src/main/resources/application.properties

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

Loading…
Cancel
Save