18 lines
487 B
Go
18 lines
487 B
Go
package resp
|
|
|
|
import "time"
|
|
|
|
type JobAdminListResp struct {
|
|
AreaName string `json:"areaName"`
|
|
ID string `json:"id" `
|
|
JobAreaID string `json:"jobAreaId"`
|
|
Title string `json:"title" `
|
|
Introduce string `json:"introduce" `
|
|
Duty string `json:"duty" `
|
|
Salary string `json:"salary" `
|
|
Sequence int `json:"sequence"`
|
|
Status string `json:"status" `
|
|
CreatedAt time.Time `json:"created_at"`
|
|
UpdatedAt time.Time `json:"updated_at" `
|
|
}
|