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

35 lines
808 B
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.RES_DISTRIBUTE")]
public partial class RES_DISTRIBUTE
{
[Key]
public decimal PKID { get; set; }
[Required]
[StringLength(15)]
public string PICI { get; set; }
public decimal? RESTYPEID { get; set; }
public decimal? ACTIVITYID { get; set; }
[StringLength(20)]
public string DISLEADER { get; set; }
[StringLength(200)]
public string SALESREMARK { get; set; }
[StringLength(100)]
public string REMARK { get; set; }
public decimal? CREATEUSER { get; set; }
public DateTime? CTIME { get; set; }
}
}