feat(app): update
This commit is contained in:
31
pkg/dto/request/SetServiceStatusRequest.go
Normal file
31
pkg/dto/request/SetServiceStatusRequest.go
Normal file
@ -0,0 +1,31 @@
|
||||
package request
|
||||
|
||||
import "errors"
|
||||
|
||||
// 设置接单状态
|
||||
type SetServiceStatusRequest struct {
|
||||
BaseRequest
|
||||
UserSkillId string
|
||||
ServiceStatus string // 1=接单 0=不接单
|
||||
}
|
||||
|
||||
// 签名验证
|
||||
func (request *SetServiceStatusRequest) CheckParameter() (err error) {
|
||||
|
||||
if len(request.AccessToken) == 0 {
|
||||
err = errors.New("AccessToken不能为空")
|
||||
return
|
||||
}
|
||||
|
||||
if len(request.UserSkillId) == 0 {
|
||||
err = errors.New("UserSkillId不能为空")
|
||||
return
|
||||
}
|
||||
|
||||
if len(request.ServiceStatus) == 0 {
|
||||
err = errors.New("ServiceStatus不能为空")
|
||||
return
|
||||
}
|
||||
|
||||
return
|
||||
}
|
||||
Reference in New Issue
Block a user