using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LeaRun.Application.Code { /// /// 自动编号 规则分类枚举 /// public enum CodeRuleEnum { /// /// 客户关系-商机编号 /// Customer_ChanceCode = 10002, /// /// 客户关系-客户订单单号 /// Customer_CustomerCode = 10003, /// /// 客户关系-客户编号 /// Customer_OrderCode = 10004, } }