ComplianceServer/oldcode/Model/Entity/RES_DISTRIBUTEDETAIL_HIS.cs

23 lines
536 B
C#

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