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

27 lines
801 B
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.RES_ALLCOTELOG_DETAIL")]
public partial class RES_ALLCOTELOG_DETAIL
{
[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; }
public decimal? APPLYID { get; set; }
public DateTime? INDATE { get; set; }
public DateTime? OUTDATE { get; set; }
public decimal? DISUSERID { get; set; }
public DateTime? DISTIME { get; set; }
public int? DEPTID { get; set; }
}
}