using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace WX.CRM.Model.Entity { /// /// 微信资源小组成员比率分配表 /// [Table("UPDEV.WX_USERPERCENT")] public partial class WX_USERPERCENT { /// /// 组员ID /// [Key] public decimal EID { get; set; } /// /// 组ID /// public decimal GID { get; set; } /// /// 分配比率 /// public decimal DIV_PERCENT { get; set; } } }