|
@@ -50,20 +50,21 @@ func (XtHisProject) TableName() string {
|
50
|
50
|
}
|
51
|
51
|
|
52
|
52
|
type XtHisProjectTeam struct {
|
53
|
|
- ID int64 `gorm:"column:id" json:"id" form:"id"`
|
54
|
|
- ProjectTeam string `gorm:"column:project_team" json:"project_team" form:"project_team"`
|
55
|
|
- Price float64 `gorm:"column:price" json:"price" form:"price"`
|
56
|
|
- Pinyin string `gorm:"column:pinyin" json:"pinyin" form:"pinyin"`
|
57
|
|
- Wubi string `gorm:"column:wubi" json:"wubi" form:"wubi"`
|
58
|
|
- TubeColor int64 `gorm:"column:tube_color" json:"tube_color" form:"tube_color"`
|
59
|
|
- TeamType int64 `gorm:"column:team_type" json:"team_type" form:"team_type"`
|
60
|
|
- Remark string `gorm:"column:remark" json:"remark" form:"remark"`
|
61
|
|
- UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
|
62
|
|
- Status int64 `gorm:"column:status" json:"status" form:"status"`
|
63
|
|
- CreatedTime int64 `gorm:"column:created_time" json:"created_time" form:"created_time"`
|
64
|
|
- UpdatedTime int64 `gorm:"column:updated_time" json:"updated_time" form:"updated_time"`
|
65
|
|
- ProjectId string `gorm:"column:project_id" json:"project_id" form:"project_id"`
|
66
|
|
- ItemId string `gorm:"column:item_id" json:"item_id" form:"item_id"`
|
|
53
|
+ ID int64 `gorm:"column:id" json:"id" form:"id"`
|
|
54
|
+ ProjectTeam string `gorm:"column:project_team" json:"project_team" form:"project_team"`
|
|
55
|
+ Price float64 `gorm:"column:price" json:"price" form:"price"`
|
|
56
|
+ Pinyin string `gorm:"column:pinyin" json:"pinyin" form:"pinyin"`
|
|
57
|
+ Wubi string `gorm:"column:wubi" json:"wubi" form:"wubi"`
|
|
58
|
+ TubeColor int64 `gorm:"column:tube_color" json:"tube_color" form:"tube_color"`
|
|
59
|
+ TeamType int64 `gorm:"column:team_type" json:"team_type" form:"team_type"`
|
|
60
|
+ Remark string `gorm:"column:remark" json:"remark" form:"remark"`
|
|
61
|
+ UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
|
|
62
|
+ Status int64 `gorm:"column:status" json:"status" form:"status"`
|
|
63
|
+ CreatedTime int64 `gorm:"column:created_time" json:"created_time" form:"created_time"`
|
|
64
|
+ UpdatedTime int64 `gorm:"column:updated_time" json:"updated_time" form:"updated_time"`
|
|
65
|
+ ProjectId string `gorm:"column:project_id" json:"project_id" form:"project_id"`
|
|
66
|
+ ItemId string `gorm:"column:item_id" json:"item_id" form:"item_id"`
|
|
67
|
+ List []*XtHisProjectList `gorm:"-" json:"list" form:"list"`
|
67
|
68
|
}
|
68
|
69
|
|
69
|
70
|
func (XtHisProjectTeam) TableName() string {
|