123456789101112131415161718192021222324252627 |
- package http_model
- import "youngee_b_api/model/gorm_model"
- type FindAllJobRequest struct {
- PageNum int32 `json:"page"`
- PageSize int32 `json:"page_size"`
- SupplierId int `json:"supplier_id"` // 子账号属于的服务商id
- }
- type FindAllJobInfo struct {
- }
- type FindAllJobData struct {
- JobInfo []*gorm_model.YounggeeJob `json:"job_info"` // 岗位信息
- Total int64 `json:"total"` // 总数
- }
- func NewFindAllJobRequest() *FindAllJobRequest {
- return new(FindAllJobRequest)
- }
- func NewFindAllJobResponse() *CommonResponse {
- resp := new(CommonResponse)
- resp.Data = new(FindAllJobData)
- return resp
- }
|