ComplianceServer/oldcode/Model/Entity/CSVR_UNITECUSTOMERAPPLYDETA...

29 lines
729 B
C#

namespace WX.CRM.Model.Entity
{
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.CSVR_UNITECUSTOMERAPPLYDETAIL")]
public partial class CSVR_UNITECUSTOMERAPPLYDETAIL
{
[Key]
public decimal PKID { get; set; }
public decimal UNITEID { get; set; }
[Required]
[StringLength(18)]
public string RESID { get; set; }
[Required]
[StringLength(18)]
public string OLDCUSTOMERID { get; set; }
[Required]
[StringLength(18)]
public string NEWCUSTOMERID { get; set; }
public virtual CSVR_UNITECUSTOMERAPPLY CSVR_UNITECUSTOMERAPPLY { get; set; }
}
}