|
...
|
...
|
@@ -12,7 +12,7 @@ type CooperationContract struct { |
|
|
|
CooperationContractName string `json:"cooperationContractName"` // 共创合约名称
|
|
|
|
CooperationContractNumber string `json:"cooperationContractNumber"` // 共创合约编号
|
|
|
|
CooperationProjectNumber string `json:"cooperationProjectNumber"`
|
|
|
|
CooperationContractUndertakerTypes []int `json:"cooperationContractUndertakerType"` // 共创合约承接对象,1员工,2共创用户,3公开
|
|
|
|
CooperationContractUndertakerTypes []int `json:"cooperationContractUndertakerTypes"` // 共创合约承接对象,1员工,2共创用户,3公开
|
|
|
|
Department struct {
|
|
|
|
DepartmentId int `json:"departmentId,string"`
|
|
|
|
DepartmentName string `json:"departmentName"`
|
|
...
|
...
|
@@ -77,6 +77,9 @@ type CooperationContract struct { |
|
|
|
UserPhone string `json:"userPhone"`
|
|
|
|
Referrer struct {
|
|
|
|
UserId int `json:"userId,string"`
|
|
|
|
UserType int32 `json:"userType"` // 用户类型,1员工,2共创用户,3公开
|
|
|
|
UserName string `json:"userName"` // 用户姓名
|
|
|
|
UserPhone string `json:"userPhone"` // 用户手机号
|
|
|
|
UserInfo struct {
|
|
|
|
UserAvatar string `json:"userAvatar"` // 用户头像
|
|
|
|
UserEmail string `json:"userEmail"` // 用户邮箱
|
|
...
|
...
|
@@ -87,6 +90,9 @@ type CooperationContract struct { |
|
|
|
} `json:"referrer"`
|
|
|
|
Salesman struct {
|
|
|
|
UserId int `json:"userId,string"`
|
|
|
|
UserType int32 `json:"userType"` // 用户类型,1员工,2共创用户,3公开
|
|
|
|
UserName string `json:"userName"` // 用户姓名
|
|
|
|
UserPhone string `json:"userPhone"` // 用户手机号
|
|
|
|
UserInfo struct {
|
|
|
|
UserAvatar string `json:"userAvatar"` // 用户头像
|
|
|
|
UserEmail string `json:"userEmail"` // 用户邮箱
|
|
...
|
...
|
@@ -235,6 +241,9 @@ type ( |
|
|
|
SponsorName string `json:"sponsorName"` //项目发起人姓名
|
|
|
|
PageNumber int `json:"pageNumber"`
|
|
|
|
PageIndex int `json:"pageIndex"`
|
|
|
|
CompanyId int64 ` json:"companyId"`
|
|
|
|
OrgId int64 ` json:"orgId"`
|
|
|
|
UserBaseId int64 `json:"userBaseId"`
|
|
|
|
}
|
|
|
|
|
|
|
|
DataCooperationContractSearchByUndertaker struct {
|
...
|
...
|
|