...
|
...
|
@@ -164,11 +164,7 @@ type ( |
|
|
// 用户基础数据id
|
|
|
UserBaseId int64 `cname:"用户基础数据ID" json:"userBaseId"`
|
|
|
}
|
|
|
|
|
|
DataCooperationProjectSearch struct {
|
|
|
//Total int64 `json:"total"`
|
|
|
//List []CooperationProject `json:"cooperationProjects"`
|
|
|
List []struct {
|
|
|
DataCooperationProjectSearchItem struct {
|
|
|
CooperationProjectID string `json:"cooperationProjectId"`
|
|
|
CooperationProjectNumber string `json:"cooperationProjectNumber"`
|
|
|
CooperationProjectDescription string `json:"cooperationProjectDescription"`
|
...
|
...
|
@@ -201,10 +197,6 @@ type ( |
|
|
UserPhone string `json:"userPhone"`
|
|
|
UserAccount string `json:"userAccount"`
|
|
|
} `json:"userInfo"`
|
|
|
//UserType int `json:"userType"`
|
|
|
//UserName string `json:"userName"`
|
|
|
//UserPhone string `json:"userPhone"`
|
|
|
//Status int `json:"status"`
|
|
|
} `json:"cooperationProjectSponsor"`
|
|
|
CooperationMode struct {
|
|
|
CooperationModeId int `json:"cooperationModeId,string"`
|
...
|
...
|
@@ -215,7 +207,6 @@ type ( |
|
|
DepartmentID string `json:"departmentId"`
|
|
|
DepartmentName string `json:"departmentName"`
|
|
|
DepartmentNumber string `json:"departmentNumber"`
|
|
|
//IsOrganization bool `json:"isOrganization"`
|
|
|
} `json:"department"`
|
|
|
CooperationProjectUndertakerTypes []int `json:"cooperationProjectUndertakerTypes"`
|
|
|
CooperationProjectUndertakerType []int `json:"cooperationProjectUndertakerType"`
|
...
|
...
|
@@ -240,17 +231,12 @@ type ( |
|
|
UserPhone string `json:"userPhone"`
|
|
|
UserAccount string `json:"userAccount"`
|
|
|
} `json:"userInfo"`
|
|
|
//UserType int `json:"userType"`
|
|
|
//UserName string `json:"userName"`
|
|
|
//UserPhone string `json:"userPhone"`
|
|
|
//Status int `json:"status"`
|
|
|
} `json:"operator"`
|
|
|
//OperateTime time.Time `json:"operateTime"`
|
|
|
Status int `json:"status"`
|
|
|
//UpdatedAt time.Time `json:"updatedAt"`
|
|
|
//DeletedAt time.Time `json:"deletedAt"`
|
|
|
//CreatedAt time.Time `json:"createdAt"`
|
|
|
} `json:"list"`
|
|
|
}
|
|
|
DataCooperationProjectSearch struct {
|
|
|
List []DataCooperationProjectSearchItem `json:"list"`
|
|
|
Total int `json:"total"`
|
|
|
}
|
|
|
)
|
...
|
...
|
|