123456789101112131415161718192021222324 |
- using System.ComponentModel;
- namespace SnapshotWinFormsApp.Entities.NewHotline;
- public enum EPointsSource
- {
- /// <summary>
- /// 上报积分
- /// </summary>
- [Description("上报积分")]
- Report = 0,
- /// <summary>
- /// 审核积分
- /// </summary>
- [Description("审核积分")]
- Audit = 1,
- /// <summary>
- /// 积分兑换
- /// </summary>
- [Description("积分兑换")]
- Exchange = 3,
- }
|