using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FlexJobApi.Core { /// /// 计费方式 /// public enum EnumBillingMethod { /// /// 按月 /// Month = 10, /// /// 按天 /// Day = 20, /// /// 按时 /// Hour = 30, /// /// 计件 /// Piece = 40 } }