hypaas
7 months ago
5 changed files with 29 additions and 5 deletions
@ -1,15 +1,16 @@ |
|||||||
<?xml version="1.0" encoding="UTF-8"?> |
<?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"> |
<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=""/> |
<module name="Log" package="Log" table-prefix="" repo-package=""/> |
||||||
<entity hashAll="false" logUpdates="true" persistable="true" name="LogConfig" cacheable="false" lang="java" strategy="SINGLE"> |
<entity hashAll="false" logUpdates="true" persistable="true" name="LogConfig" cacheable="false" lang="java" strategy="SINGLE" table="sys_log_config"> |
||||||
<string actOverwrite="false" title="日志起始时间" copy="true" massUpdate="false" name="logStartTime" isJudg="false"/> |
<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="logEndTime" isJudg="false"/> |
||||||
<string actOverwrite="false" title="备份大小" copy="true" massUpdate="false" name="size" isJudg="false"/> |
<string actOverwrite="false" title="备份大小" copy="true" massUpdate="false" name="thresholdSize" isJudg="false"/> |
||||||
<enum title="日志状态" massUpdate="false" ref="module.LogStatus" name="status" copy="true"/> |
<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="backupTime" isJudg="false"/> |
||||||
<string actOverwrite="false" title="记录类型" copy="true" massUpdate="false" name="recordType" 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="threshold" isJudg="false"/> |
||||||
<integer actOverwrite="false" title="备份周期" copy="true" massUpdate="false" name="backupCycle" 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"/> |
<string actOverwrite="false" title="备份开始日期" copy="true" massUpdate="false" name="backupStartTime" isJudg="false"/> |
||||||
|
<string actOverwrite="false" title="文件路径" copy="true" massUpdate="false" name="filePath" isJudg="false"/> |
||||||
</entity> |
</entity> |
||||||
</domain-models> |
</domain-models> |
||||||
|
@ -0,0 +1,12 @@ |
|||||||
|
<?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"> |
||||||
|
<grid canEdit="false" canNew="false" title="业务用户日志备份" model="Log.LogConfig" canDelete="false" edit-icon="false" canArchive="false" freeSearch="all" name="ServiceUserLogBackup-grid" width="large"> |
||||||
|
<field name="logStartTime" title="日志起始时间"/> |
||||||
|
<field name="logEndTime" title="日志结束时间"/> |
||||||
|
<field name="thresholdSize" title="备份大小"/> |
||||||
|
<field name="status" title="日志状态"/> |
||||||
|
<field name="backupTime" title="备份时间"/> |
||||||
|
<button onClick="action.method.system.logBackup" title="备份" name="备份"/> |
||||||
|
<button onClick="action.method.system.logDeleteBackup" title="删除备份" name="删除备份"/> |
||||||
|
</grid> |
||||||
|
</object-views> |
Loading…
Reference in new issue