- package http_model
- type RefuseTalentWithdrawalRequest struct {
- WithdrawId string `json:"withdraw_id"`
- Reason string `json:"reason"`
- }
- func NewRefuseTalentWithdrawalRequest() *RefuseTalentWithdrawalRequest {
- return new(RefuseTalentWithdrawalRequest)
- }
- func NewRefuseTalentWithdrawalResponse() *CommonResponse {
- resp := new(CommonResponse)
- return resp
- }
|