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

22 lines
517 B
C#

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