You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- package enum
-
- type PayWay int32
-
- const (
- PayWayForAli = 1
- PayWayForWx = 2
- )
-
- func (gt PayWay) String() string {
- switch gt {
- case PayWayForAli:
- return "支付宝"
- case PayWayForWx:
- return "微信"
- default:
- return "未知"
- }
- }
|