| 123456789101112131415161718192021222324 |
- package datamodel
- import "time"
- type WfInsAttach struct {
- OcId int64 `json:"ocId" xorm:"'oc_id' bigint pk comment('OC Id') " `
- WfInsId int64 `json:"wfInsId" xorm:"'wf_ins_id' bigint pk comment('主键ID') " `
- ActivityInsId int64 `json:"activityInsId" xorm:"'activity_ins_id' bigint pk comment('主键ID') " `
- ActivityCode string `json:"activityCode" xorm:"'activity_code' varchar(127) comment('Activity Code')"`
-
- FileId int64 `json:"fileId" xorm:"'file_id' bigint pk comment('主键ID') " `
-
- CreatedBy int64 `json:"createdBy" xorm:"'created_by' " `
- CreatedAt time.Time `json:"createdAt" xorm:"'created_at' " `
- UpdatedBy int64 `json:"updatedBy" xorm:"'updated_by' " `
- UpdatedAt time.Time `json:"updatedAt" xorm:"'updated_at' " `
- DeletedFlag int64 `json:"deletedFlag" xorm:"'deleted_flag'" `
- DeletedBy int64 `json:"deletedBy" xorm:"'deleted_by' " `
- DeletedAt time.Time `json:"deletedAt" xorm:"'deleted_at' " `
- }
- func (m *WfInsAttach) TableName() string {
- return "wf_ins_attach"
- }
|