| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- package datamodel
- import "time"
- type WfActivityIns 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('WF INS ID') " `
-
- ActivityDefId int64 `json:"activityDefId" xorm:"'activity_def_id' bigint pk comment('主键ID') " `
- ActivityInsId int64 `json:"activityInsId" xorm:"'activity_ins_id' bigint pk comment('主键ID') " `
- ActivityInsTitle string `json:"activityInsTitle" xorm:"'activity_ins_title' varchar(127) comment('Activity Ins Title')"`
- ActivityCode string `json:"activityCode" xorm:"'activity_code' varchar(127) comment('Activity Code')"`
-
- GroupId int64 `json:"groupId" xorm:"'group_id' bigint comment('Group Id') " `
- GroupName string `json:"groupName" xorm:"'group_name' varchar(127) comment('Group Name') " `
- PositionId int64 `json:"positionId" xorm:"'position_id' bigint comment('Position Id') " `
- PositionName string `json:"positionName" xorm:"'position_name' varchar(127) comment('Position Name')" `
- AccountId int64 `json:"accountId" xorm:"'account_id' bigint comment('Account Id') " `
- AccountName string `json:"accountName" xorm:"'account_name' varchar(127) comment('Account Name') " `
-
- FormCode string `json:"formCode" xorm:"'form_code' varchar(127) comment('描述') " `
-
- ActivityInsFrom int64 `json:"activityInsFrom" xorm:"'activity_ins_from' bigint pk comment('主键ID') " `
- ActivityInsTo int64 `json:"activityInsTo" xorm:"'activity_ins_to' bigint pk comment('主键ID') " `
-
- StartTime time.Time `json:"startTime" xorm:"'start_time' " `
- EndTime time.Time `json:"endTime" xorm:"'end_time' " `
-
- Status int64 `json:"status" xorm:"'status' bigint comment('Account 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 *WfActivityIns) TableName() string {
- return "wf_activity_ins"
- }
|