schedule.xml 1.1 KB

12345678910111213141516
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <table name="schedule" desc="个人工作日志表">
  3. <column isNull="false" isPK="true" name="id" caption="主键" dbtype="varchar(36)"
  4. type="string" size="36">
  5. <auto value="$uuid" update="false">
  6. </auto>
  7. </column>
  8. <column isNull="false" name="user_id" caption="人员Id" type="string" size="30" dbtype="varchar(36)"/>
  9. <column isNull="false" name="remark" caption="备注" type="string" size="300" dbtype="varchar(36)"/>
  10. <column isNull="false" name="schedule_time" caption="日志时间" type="datetime"/>
  11. <column isNull="false" name="del_flag" caption="是否删除 1:删除 0:正常" type="int32"/>
  12. <column isNull="false" name="create_by" caption="创建人" type="string" size="36" dbtype="varchar(36)"/>
  13. <column isNull="false" name="create_time" caption="创建时间" type="datetime"/>
  14. <column isNull="false" name="last_update_by" caption="最后更新人" type="string" size="36" dbtype="varchar(36)"/>
  15. <column isNull="false" name="last_update_date" caption="最后更新时间" type="datetime"/>
  16. </table>