123456789101112131415161718192021222324252627282930313233343536 |
- // 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:"userPositionId,optional"`
- Source int64 `json:"source,optional"`
- InfoId string `json:"info_id,optional"`
- PositionType int64 `header:"positionType,optional"`
- AccountId int64 `header:"userAccountId,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:"userPositionId,optional"`
- }
- type DrawClueReq struct {
- PositionId int64 `json:"positionId,optional"`
- Count int64 `json:"count,optional"`
- }
|