智慧食堂
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.

20 lines
239 B

  1. package enum
  2. type PayWay int32
  3. const (
  4. PayWayForAli = 1
  5. PayWayForWx = 2
  6. )
  7. func (gt PayWay) String() string {
  8. switch gt {
  9. case PayWayForAli:
  10. return "支付宝"
  11. case PayWayForWx:
  12. return "微信"
  13. default:
  14. return "未知"
  15. }
  16. }