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.

22 lines
349 B

  1. namespace Shentun.WebApi.Service
  2. {
  3. public enum ScanPayType
  4. {
  5. /// <summary>
  6. /// 自支付
  7. /// </summary>
  8. SelfPay = 0,
  9. /// <summary>
  10. /// 主扫
  11. /// </summary>
  12. MainScan = 1,
  13. /// <summary>
  14. /// 被扫
  15. /// </summary>
  16. ByScan = 2
  17. }
  18. }