1234567891011121314151617181920212223242526272829 |
- // 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:"positionId,optional"`
- UserId int64 `header:"newUserId,optional"`
- }
- type GetInfoIdReq struct {
- PositionId int64 `header:"positionId,optional"`
- }
|