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

23 lines
531 B
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.RES_DISTRIBUTE_DETAIL")]
public partial class RES_DISTRIBUTE_DETAIL
{
[Key]
public decimal LOGID { get; set; }
[StringLength(100)]
public string RESID { get; set; }
public decimal DISTRIBUTEID { get; set; }
public decimal SALESID { get; set; }
public DateTime? CTIME { get; set; }
}
}