|
|
package allied_creation_cooperation
|
|
|
|
|
|
import "time"
|
|
|
|
|
|
//共创合约变更记录搜索
|
|
|
type (
|
|
|
ReqContractChangeLogsSearch struct {
|
|
|
PageNumber int ` json:"pageNumber,omitempty"` // 页码
|
|
|
PageSize int `json:"pageSize,omitempty"` // 页面大小
|
|
|
CompanyId int `json:"companyId"` //公司ID
|
|
|
OrgId int64 `json:"orgId"` // 组织机构ID
|
|
|
OrgIds []int64 `json:"orgIds"` // 关联的组织机构ID列表
|
|
|
UserId int64 ` json:"userId"` // 用户ID,
|
|
|
UserBaseId int64 `json:"userBaseId"` // 用户基础数据id
|
|
|
}
|
|
|
|
|
|
DataContractChangeLogsSearch struct {
|
|
|
Grid struct {
|
|
|
Total int
|
|
|
List []struct {
|
|
|
CooperationContractChangeLogId int64 `json:"cooperationContractChangeLogId,string"` // 共创合约变更日志
|
|
|
IncentivesRule string `json:"incentivesRule"` // 激励规则
|
|
|
IncentivesRuleDetail string `json:"incentivesRuleDetail"` // 激励规则明细
|
|
|
OperationType int32 `json:"operationType"` // 合约变更操作类型,1编辑、2暂停、3恢复
|
|
|
CooperationContractNumber string `json:"cooperationContractNumber"` // 共创合约编号
|
|
|
Undertakers string `json:"undertakers"` // 承接人
|
|
|
Company struct {
|
|
|
CompanyId int64 `json:"companyId,string"` // 公司ID,通过集成REST上下文获取
|
|
|
CompanyLogo string `json:"companyLogo"` // 公司logo
|
|
|
CompanyName string `json:"companyName"` // 公司名称
|
|
|
} `json:"company"` // 公司
|
|
|
Org struct {
|
|
|
OrgId int64 `json:"orgId,string"` // 组织机构ID
|
|
|
OrgName string `json:"orgName"` // 组织名称
|
|
|
} `json:"org"` // 组织机构
|
|
|
Operator struct {
|
|
|
UserId int64 `json:"userId,string"` // 用户ID,
|
|
|
UserBaseId int64 `json:"userBaseId,string"` // 用户基本id
|
|
|
UserName string `json:"userName"` // 用户姓名
|
|
|
UserPhone string `json:"userPhone"` // 用户手机号
|
|
|
} `json:"operator"` // 操作人
|
|
|
OperatorTime time.Time `json:"operatorTime"` // 操作时间
|
|
|
UpdatedAt time.Time `json:"updatedAt"` // 更新时间
|
|
|
CreatedAt time.Time `json:"createdAt"` // 创建时间
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
) |
...
|
...
|
|