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