| 123456789101112131415161718192021222324252627282930313233343536373839 |
- 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') " `
- CurGroupName string `json:"curGroupName" xorm:"'cur_group_name' varchar(127) comment('描述') " `
- CurPositionId int64 `json:"curPositionId" xorm:"'cur_position_id' bigint comment('CurGroupId') " `
- CurPositionName string `json:"curPositionName" xorm:"'cur_position_name' varchar(127) comment('描述') " `
- CurAccountId int64 `json:"curAccountId" xorm:"'cur_account_id' bigint comment('CurGroupId') " `
- CurAccountName string `json:"curAccountName" xorm:"'cur_account_name' varchar(127) comment('描述') " `
-
- CurActivityInsId int64 `json:"curActivityInsId" xorm:"'cur_activity_ins_id' bigint comment('CurGroupId') " `
- CurActivityBeginTime time.Time `json:"curActivityBeginTime" xorm:"'cur_activity_begin_name' varchar(127) comment('描述') " `
-
- CurActivityCode string `json:"curActivityCode" xorm:"'cur_activity_code' varchar(127) comment('描述') " `
- CurActivityTitle string `json:"curActivityTitle" xorm:"'cur_activity_title' varchar(127) comment('描述') " `
-
- CurFormCode string `json:"curFormCode" xorm:"'cur_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 *WfIns) TableName() string {
- return "wf_ins"
- }
|