1
This commit is contained in:
19
common/const/enum/otc_appealreason/otc_appealreason.go
Normal file
19
common/const/enum/otc_appealreason/otc_appealreason.go
Normal file
@ -0,0 +1,19 @@
|
||||
package otc_appealreason
|
||||
|
||||
// 申诉原因
|
||||
const (
|
||||
Paid = 1 // 我已付款,卖家未放行
|
||||
PayMore = 3 // 我向卖家多转了钱
|
||||
NotPay = 5 // 我没有收到买家付款
|
||||
MoneyErr = 7 // 买家付款金额不对
|
||||
Other = 9 // 其他
|
||||
|
||||
)
|
||||
|
||||
var Types = map[int]string{
|
||||
Paid: "我已付款,卖家未放行",
|
||||
PayMore: "我向卖家多转了钱",
|
||||
NotPay: "我没有收到买家付款",
|
||||
MoneyErr: "买家付款金额不对",
|
||||
Other: "其他",
|
||||
}
|
||||
Reference in New Issue
Block a user