deleteJob.go 326 B

123456789101112131415161718
  1. package http_model
  2. type DeleteJobRequest struct {
  3. JobId int `json:"job_id"` // 岗位ID
  4. }
  5. type DeleteJobData struct {
  6. }
  7. func NewDeleteJobRequest() *DeleteJobRequest {
  8. return new(DeleteJobRequest)
  9. }
  10. func NewDeleteJobResponse() *CommonResponse {
  11. resp := new(CommonResponse)
  12. resp.Data = new(DeleteJobData)
  13. return resp
  14. }