123456789101112131415161718192021222324252627282930313233343536373839 |
- // Code generated by goctl. DO NOT EDIT.
- package types
- type Info struct {
- TotalCount int64 `json:"totalCount"` // 本次查询info_id总量
- ExistCount int64 `json:"existCount"` // 已存在的info_id的数量
- NewCount int64 `json:"newCount"` // 不存在的info_id的数量
- }
- type DedupReq struct {
- PersonId string `form:"personId"` //人员id
- InfoId string `form:"infoId"` //信息id 逗号分隔
- EntId string `form:"entId"` // 企业id
- IsInsert bool `form:"isInsert"` // 是否插入不重复的数据
- IsEnt bool `form:"isEnt"` //是否按企业id判重
- }
- type DedupResp struct {
- Code int64 `json:"code"`
- Msg string `json:"msg"`
- Data Info `json:"data"`
- }
- type DedupByAccountReq struct {
- PersonId string `form:"personId"` //人员id
- InfoId string `form:"infoId"` //信息id 逗号分隔
- AccountId string `form:"accountId"` // 账户id
- DataDesc int64 `form:"dataDesc"` // 字段包规格 1-高级字段包 2-标准字段包
- }
- type EntCountReq struct {
- EntId string `form:"entId"` // 企业id
- }
- type EntCountResp struct {
- Code int64 `json:"code"`
- Msg string `json:"msg"`
- Data int64 `json:"data"`
- }
|