...
|
...
|
@@ -51,15 +51,26 @@ type ( |
|
|
FeedbackContent string `json:"feedbackContent"`
|
|
|
CooperationContractNumber string `json:"cooperationContractNumber"`
|
|
|
CooperationContractName string `json:"cooperationContractName"`
|
|
|
ContractUndertaker interface{} `json:"contractUndertaker"`
|
|
|
Org interface{} `json:"org"`
|
|
|
Company interface{} `json:"company"`
|
|
|
ContractUndertaker struct {
|
|
|
UserId int `json:"userId,string,"`
|
|
|
UserPhone string `json:"userPhone"`
|
|
|
UserName string `json:"userName"`
|
|
|
UserCode string `json:"userCode"`
|
|
|
UserInfo struct {
|
|
|
UserAccount string `json:"userAccount"`
|
|
|
UserName string `json:"userName"`
|
|
|
UserPhone string `json:"userPhone"`
|
|
|
UserCode string `json:"userCode"`
|
|
|
} `json:"userInfo"`
|
|
|
} `json:"contractUndertaker"`
|
|
|
Org interface{} `json:"org"`
|
|
|
Company interface{} `json:"company"`
|
|
|
//UpdatedAt time.Time `json:"updatedAt"`
|
|
|
//DeletedAt time.Time `json:"deletedAt"`
|
|
|
CreatedAt jtime.TimeToUnixMsec `json:"createdAt"`
|
|
|
CooperationMode struct {
|
|
|
// 共创模式ID
|
|
|
CooperationModeId int `json:"cooperationModeId,string"`
|
|
|
CooperationModeId int `json:"cooperationModeId,string,"`
|
|
|
// 共创模式编码,唯一确定
|
|
|
CooperationModeNumber string `json:"cooperationModeNumber"`
|
|
|
// 模式名称,唯一确定
|
...
|
...
|
|