| 1234567891011121314151617181920212223242526 |
- package datamodel
- import "time"
- type WfActivityDef struct {
- WfDefId int64 `json:"wfDefId" xorm:"'wf_def_id' bigint pk comment('主键ID') " `
- ActivityDefId int64 `json:"activityDefId" xorm:"'activity_def_id' bigint pk comment('主键ID') " `
- ActivityDefTitle string `json:"activityDefTitle" xorm:"'activity_def_title' varchar(127) comment('TASK类型名称') " `
-
- ActivityCode string `json:"activityCode" xorm:"'activity_code' varchar(127) comment('TASK类型名称') " `
- ActivityDefDesc string `json:"activityDefDesc" xorm:"'activity_def_desc' varchar(127) comment('描述') " `
-
- FormCode string `json:"formCode" xorm:"'form_code' varchar(127) comment('描述') " `
-
- 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 *WfActivityDef) TableName() string {
- return "wf_activity_def"
- }
|