types.go 918 B

1234567891011121314151617181920212223242526272829
  1. // Code generated by goctl. DO NOT EDIT.
  2. package types
  3. type Resp struct {
  4. Error_code int64 `json:"error_code"` //响应代码
  5. Error_msg string `json:"error_msg"` //响应消息
  6. Data interface{} `json:"data"`
  7. }
  8. type MyDataAssetReq struct {
  9. UserId string `header:"userId,optional"`
  10. NewUserId int64 `header:"newUserId,optional"`
  11. EntUserId int64 `header:"entUserId,optional"`
  12. }
  13. type AddProjectReq struct {
  14. PositionId int64 `header:"positionId,optional"`
  15. Source int64 `json:"source,optional"`
  16. InfoId string `json:"info_id,optional"`
  17. PositionType int64 `header:"positionType,optional"`
  18. AccountId int64 `header:"accountId,optional"`
  19. CompanyName string `header:"entName,optional"`
  20. UserName string `header:"positionId,optional"`
  21. UserId int64 `header:"newUserId,optional"`
  22. }
  23. type GetInfoIdReq struct {
  24. PositionId int64 `header:"positionId,optional"`
  25. }