12345678910111213141516171819202122 |
- // 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"`
- }
|