23 lines
537 B
C#
23 lines
537 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(100)]
|
|
public string RESID { get; set; }
|
|
|
|
public decimal DISTRIBUTEID { get; set; }
|
|
|
|
public decimal SALESID { get; set; }
|
|
|
|
public DateTime? CTIME { get; set; }
|
|
}
|
|
}
|