getlocaltalentstatuscountrequest.go 641 B

12345678910111213141516171819202122
  1. package http_model
  2. type GetLocalTalentstatusCountRequest struct {
  3. ProjectId string `json:"project_id"`
  4. TaskStage int `json:"task_stage"`
  5. }
  6. type GetLocalTalentstatusCountResponse struct {
  7. UnoperateTalentnum int64 `json:"unoperate_talentnum"`
  8. AgreeTalentnum int64 `json:"agree_talentnum"`
  9. RefuseTalentnum int64 `json:"refuse_talentnum"`
  10. }
  11. func NewGetLocalTalentstatusCountRequest() *GetLocalTalentstatusCountRequest {
  12. return new(GetLocalTalentstatusCountRequest)
  13. }
  14. func NewGetLocalTalentstatusCountResponse() *CommonResponse {
  15. resp := new(CommonResponse)
  16. resp.Data = new(GetLocalTalentstatusCountResponse)
  17. return resp
  18. }