37 lines
944 B
C#
37 lines
944 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(100)]
|
|
public string RESID { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string UMID { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(100)]
|
|
public string OLDCUSTOMERID { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string OLDUMID { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(100)]
|
|
public string NEWCUSTOMERID { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string NEWUMID { get; set; }
|
|
|
|
public virtual CSVR_UNITECUSTOMERAPPLY CSVR_UNITECUSTOMERAPPLY { get; set; }
|
|
}
|
|
} |