|
@@ -3,14 +3,28 @@ package datamodels
|
|
|
import "time"
|
|
import "time"
|
|
|
|
|
|
|
|
type WfIns struct {
|
|
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') " `
|
|
|
|
|
|
|
+ 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' " `
|
|
CreatedBy int64 `json:"createdBy" xorm:"'created_by' " `
|
|
|
CreatedAt time.Time `json:"createdAt" xorm:"'created_at' " `
|
|
CreatedAt time.Time `json:"createdAt" xorm:"'created_at' " `
|