notice.xml 1.1 KB

12345678910111213141516
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <table name="notice" 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="title" caption="通报标题" type="string" size="36" dbtype="varchar(36)"/>
  9. <column isNull="false" name="content" caption="通报内容" type="string" size="500" dbtype="varchar(36)"/>
  10. <column isNull="false" name="remark" caption="备注" type="string" size="500" dbtype="varchar(36)"/>
  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>