31 lines
961 B
C#
31 lines
961 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.RES_SALESGROUP_DETAIL")]
|
|
public partial class RES_SALESGROUP_DETAIL
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
//[Column(Order = 0)]
|
|
public decimal GROUPID { get; set; }
|
|
|
|
public decimal INNERUSERID { get; set; }
|
|
|
|
public decimal? RESNUM { get; set; }
|
|
public decimal? RESRATE { get; set; }
|
|
|
|
public decimal EID { get; set; }
|
|
public decimal? GID { get; set; }
|
|
public string GNAME { get; set; }
|
|
public decimal? GROUPRATIO { get; set; }
|
|
public decimal? GROUPTYPE { get; set; }
|
|
public decimal? USERTYPE { get; set; }
|
|
public string ACTTYPE { get; set; }
|
|
public string UNAME { get; set; }
|
|
public string RATETYPE { get; set; }
|
|
public string STRATEGY { get; set; }
|
|
}
|
|
}
|