1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
| using System;
| using System.Collections.Generic;
| using System.ComponentModel;
| using System.Text;
|
| namespace JiepeiWMS.Common.Enums
| {
| /// <summary>
| /// 支付类型
| /// </summary>
| [Description("支付类型")]
| public enum EnumPayType
| {
| [Description("现金")]
| 现金 = 1,
|
| [Description("月结")]
| 月结 = 2,
|
| [Description("备用金")]
| 备用金 = 3,
|
| [Description("电汇")]
| 电汇 = 4,
|
| [Description("承兑")]
| 承兑 = 5,
| }
| }
|
|