TG.WXCRM.V4/Model/Entity/RES_DISTRIBUTEHIS_EFFECT.cs

31 lines
1019 B
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace WX.CRM.Model.Entity
{
[Table("UPDEV.RES_DISTRIBUTEHIS_EFFECT")]
public class RES_DISTRIBUTEHIS_EFFECT
{
[Key]
public decimal ID { get; set; }
public string PICI { get; set; }
public decimal RESTYPEID { get; set; }
public string RESID { get; set; }
public decimal DISTRIBUTEID { get; set; }
public decimal? SALESID { get; set; }
public DateTime STIME { get; set; }
public DateTime? ETIME { get; set; }
public decimal ALLCALL { get; set; }
public decimal CANCALL { get; set; }
public decimal MEMO { get; set; }
public decimal WEIXIN { get; set; }
public decimal FIRSTORDER { get; set; }
public decimal JIHUO { get; set; }
public decimal JIANGJIE { get; set; }
public decimal YIXIANG { get; set; }
public decimal FUWU { get; set; }
}
}