cm_tree_contracts.go 969 B

123456789101112131415161718192021
  1. package models
  2. import (
  3. "time"
  4. )
  5. type CmTreeContracts struct {
  6. Id int `xorm:"not null pk comment('自增ID') INT(11)"`
  7. TreeId int `xorm:"not null comment('树ID') INT(11)"`
  8. ParentId int `xorm:"not null comment('父级ID') INT(11)"`
  9. Name string `xorm:"not null comment('名称') VARCHAR(64)"`
  10. Code string `xorm:"comment('项目节编号') VARCHAR(32)"`
  11. Depth int `xorm:"not null comment('深度') TINYINT(4)"`
  12. Serial int `xorm:"not null comment('序号') INT(11)"`
  13. Attribution string `xorm:"comment('归属') VARCHAR(32)"`
  14. Sort int `xorm:"not null comment('排序') TINYINT(4)"`
  15. ContractId int `xorm:"not null comment('合同ID') INT(11)"`
  16. ContractName string `xorm:"comment('合同名称') VARCHAR(64)"`
  17. ContractCode string `xorm:"comment('合同编号') VARCHAR(32)"`
  18. CreateTime time.Time `xorm:"comment('创建时间') DATETIME"`
  19. }