12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- // Code generated by goctl. DO NOT EDIT.
- package types
- type Resp struct {
- Error_code int64 `json:"error_code"` //响应代码
- Error_msg string `json:"error_msg"` //响应消息
- Data interface{} `json:"data"`
- }
- type MyDataAssetReq struct {
- UserId string `header:"userId,optional"`
- NewUserId int64 `header:"newUserId,optional"`
- EntUserId int64 `header:"entUserId,optional"`
- }
- type AddProjectReq struct {
- PositionId int64 `header:"positionId,optional"`
- Source int64 `json:"source,optional"`
- InfoId string `json:"info_id,optional"`
- PositionType int64 `header:"positionType,optional"`
- AccountId int64 `header:"accountId,optional"`
- CompanyName string `header:"entName,optional"`
- UserName string `header:"userName,optional"`
- UserId int64 `header:"newUserId,optional"`
- EntId int64 `header:"entId,optional"`
- EntUserName string `header:"entUserName,optional"`
- }
- type GetInfoIdReq struct {
- PositionId int64 `header:"positionId,optional"`
- }
- type DrawClueReq struct {
- PositionId int64 `header:"positionId,optional"`
- Count int64 `json:"count,optional"`
- }
- type CallReq struct {
- PositionId int64 `header:"positionId,optional"`
- Phone string `json:"phone"`
- }
- type DistributeClueReq struct {
- ClueCount string `json:"clueCount"`
- ClueIdList []int64 `json:"clueIdList"`
- Datas []map[string]interface{} `json:"datas"`
- PositionId int64 `header:"positionId,optional"`
- IsTask int64 `json:"isTask"`
- }
- type ClueImportReq struct {
- PositionId int64 `header:"positionId,optional"`
- Pcbh string `json:"pcbh"`
- }
- type ClueAddReq struct {
- Phone string `json:"phone"`
- Username string `json:"username,optional"`
- Source string `json:"source"`
- Status999 string `json:"status999"`
- Owner string `json:"owner"`
- EmpNo string `json:"empNo"`
- Company string `json:"company,optional"`
- IsPolicymaker string `json:"isPolicymaker,optional"`
- BelongToIndustry string `json:"belongToIndustry,optional"`
- Job string `json:"job,optional"`
- CustomerNeeds string `json:"customerNeeds,optional"`
- BelongTo string `json:"belongTo,optional"`
- WantGoods string `json:"wantGoods,optional"`
- CustomerBudget string `json:"customerBudget,optional"`
- }
- type SqlManageReq struct {
- Id float64 `json:"id"`
- Params []Param `json:"params"`
- }
- type Param struct {
- Value string `json:"value"`
- Type string `json:"type"`
- }
- type MyInfoReq struct {
- Bid string `json:"bid,optional"`
- Sid string `json:"sid"`
- }
- type ExportReq struct {
- Mail string `json:"mail"`
- Mapping []string `json:"mapping"`
- PositionId int64 `header:"positionId,optional"`
- }
- type OperateReq struct {
- NewId string `json:"newId"`
- Type int64 `json:"type"`
- }
|