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

55 lines
1.6 KiB
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.CSVR_UNITECUSTOMERAPPLY")]
public partial class CSVR_UNITECUSTOMERAPPLY
{
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
public CSVR_UNITECUSTOMERAPPLY()
{
CSVR_UNITECUSTOMERAPPLYDETAIL = new HashSet<CSVR_UNITECUSTOMERAPPLYDETAIL>();
}
[Key]
public decimal UNITEID { get; set; }
[Required]
[StringLength(100)]
public string RESID1 { get; set; }
[StringLength(50)]
public string UMID1 { get; set; }
[StringLength(100)]
public string RESID2 { get; set; }
[StringLength(50)]
public string UMID2 { get; set; }
public decimal APPLYID { get; set; }
public DateTime APPLYTIME { get; set; }
[StringLength(500)]
public string APPREMARK { get; set; }
public decimal? AUDITID { get; set; }
public DateTime? AUDITTIME { get; set; }
public decimal STATE { get; set; }
[StringLength(200)]
public string AUDITREMARK { get; set; }
[StringLength(150)]
public string AUDITRESPONSE { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection<CSVR_UNITECUSTOMERAPPLYDETAIL> CSVR_UNITECUSTOMERAPPLYDETAIL { get; set; }
}
}