1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace XYY.Model.Standard.Enums
- {
- /// <summary>
- /// 扣费对象
- /// </summary>
- public enum ChargeTarget
- {
- 客户=1,
- 分公司=2
- }
- }
|