Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AppealMediaDTO ¶
type GovernAppealDetailQueryRequest ¶
type GovernAppealDetailQueryRequest struct { /** * 违规单Id */ ViolationDetailId int64 `json:"violationDetailId"` }
func (*GovernAppealDetailQueryRequest) DoInvoke ¶
func (req *GovernAppealDetailQueryRequest) DoInvoke(client mtclient.MeituanClient, appAuthToken string) (*GovernAppealDetailQueryResponse, error)
type GovernAppealDetailQueryResponse ¶
type GovernAppealDetailQueryResponse struct { Code string `json:"code"` Msg string `json:"msg"` Data OpenViolationAppealDTO `json:"data"` TraceId string `json:"traceId"` }
func (*GovernAppealDetailQueryResponse) IsSuccess ¶
func (response *GovernAppealDetailQueryResponse) IsSuccess() bool
type OpenViolationAppealDTO ¶
type OpenViolationAppealDTO struct { /** * 申诉单id */ Id int32 `json:"id"` /** * 门店id */ AppPoiCode string `json:"appPoiCode"` /** * 0,"不支持申诉",10,"可申诉",20,"申诉中",30,"申诉成功",40,"申诉失败",50,"逾期未申诉",60,"已确认违规" */ Status int32 `json:"status"` /** * 处理结果文案 */ Description string `json:"description"` /** * 商家申请文字材料 */ Content string `json:"content"` /** * 申诉媒体材料 */ MediaList []AppealMediaDTO `json:"mediaList"` /** * 违规单id */ ViolationDetailId int64 `json:"violationDetailId"` /** * 申诉时间 */ Ctime int64 `json:"ctime"` /** * 最后处理时间 */ Utime int64 `json:"utime"` }
Click to show internal directories.
Click to hide internal directories.