作者 陈志颖

feat:共创项目增加查询条件

... ... @@ -19,6 +19,8 @@ type SearchCooperationProjectExtQuery struct {
ExtUserId int64 `cname:"用户ID" json:"extUserId,omitempty"`
// 用户基础数据id
ExtUserBaseId int64 `cname:"用户基础数据ID" json:"extUserBaseId,omitempty"`
// 共创项目承接对象,1员工,2共创用户,3公开,可多选
ExtCooperationProjectUndertakerTypes []int32 `json:"extCooperationProjectUndertakerTypes"`
}
type SearchCooperationProjectQuery struct {
... ... @@ -30,8 +32,10 @@ type SearchCooperationProjectQuery struct {
CooperationProjectName string `cname:"共创项目名称" json:"cooperationProjectName,omitempty"`
// 共创项目编号
CooperationProjectNumber string `cname:"共创项目编号" json:"cooperationProjectNumber,omitempty"`
// 共创项目承接对象,1员工,2共创用户,4公开,可以多选
// 共创项目承接对象,1员工,2共创用户,3公开
CooperationProjectUndertakerType int32 `json:"cooperationProjectUndertakerType"`
// 共创项目承接对象,1员工,2共创用户,3公开,可多选
CooperationProjectUndertakerTypes []int32 `json:"cooperationProjectUndertakerTypes"`
// 部门名称
DepartmentName string `cname:"部门名称" json:"departmentName,omitempty"`
// 关键字搜索
... ...