wf_ins_attach.go 1.3 KB

123456789101112131415161718192021222324
  1. package datamodel
  2. import "time"
  3. type WfInsAttach struct {
  4. OcId int64 `json:"ocId" xorm:"'oc_id' bigint pk comment('OC Id') " `
  5. WfInsId int64 `json:"wfInsId" xorm:"'wf_ins_id' bigint pk comment('主键ID') " `
  6. ActivityInsId int64 `json:"activityInsId" xorm:"'activity_ins_id' bigint pk comment('主键ID') " `
  7. ActivityCode string `json:"activityCode" xorm:"'activity_code' varchar(127) comment('Activity Code')"`
  8. FileId int64 `json:"fileId" xorm:"'file_id' bigint pk comment('主键ID') " `
  9. CreatedBy int64 `json:"createdBy" xorm:"'created_by' " `
  10. CreatedAt time.Time `json:"createdAt" xorm:"'created_at' " `
  11. UpdatedBy int64 `json:"updatedBy" xorm:"'updated_by' " `
  12. UpdatedAt time.Time `json:"updatedAt" xorm:"'updated_at' " `
  13. DeletedFlag int64 `json:"deletedFlag" xorm:"'deleted_flag'" `
  14. DeletedBy int64 `json:"deletedBy" xorm:"'deleted_by' " `
  15. DeletedAt time.Time `json:"deletedAt" xorm:"'deleted_at' " `
  16. }
  17. func (m *WfInsAttach) TableName() string {
  18. return "wf_ins_attach"
  19. }