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