| 1234567891011121314151617181920212223242526 |
- package datamodels
- import "time"
- type WfIns struct {
- OcId int64 `json:"ocId" xorm:"'oc_id' bigint pk comment('OC Id') " `
- WfDefId int64 `json:"wfDefId" xorm:"'wf_def_id' bigint pk comment('主键ID') " `
- WfInsId int64 `json:"wfInsId" xorm:"'wf_ins_id' bigint pk comment('主键ID') " `
- WfInsTitle string `json:"wfInsTitle" xorm:"'wf_ins_title' varchar(127) comment('描述') " `
- BeginTime time.Time `json:"beginTime" xorm:"'begin_time' datetime comment('描述') " `
- FinishTime time.Time `json:"finishTime" xorm:"'finish_time' datetime comment('描述') " `
- Status int64 `json:"status" xorm:"'status' bigint comment('Status') " `
- CurGroupId int64 `json:"curGroupId" xorm:"'cur_group_id' bigint comment('CurGroupId') " `
-
- 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 *WfIns) TableName() string {
- return "wf_ins"
- }
|