using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace WX.CRM.Model.Entity { /// /// 客服小组微信资源分配比率表 /// [Table("UPDEV.WX_GROUPPERCENT")] public partial class WX_GROUPPERCENT { /// /// 组ID /// [Key] public decimal GID { get; set; } /// /// 组分配比率 /// public decimal DIV_PERCENT { get; set; } } public enum WxUpdatePercentFlag { ParamsError = -1, //参数有误 Fail = 0, //失败 Success = 1, //成功 Overflow = 2, //超过100% Less = 3, //小于100% NotEqualZero = 4, //不等于0 } }