26 lines
954 B
C#
26 lines
954 B
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
public partial class CSVR_UNITECUSTOMERAPPLYDETAIL
|
|
{
|
|
[NotMapped]
|
|
public decimal map_PKID { get { return this.PKID; } set { this.PKID = value; } }
|
|
[NotMapped]
|
|
public decimal map_UNITEID { get { return this.UNITEID; } set { this.UNITEID = value; } }
|
|
[NotMapped]
|
|
public string map_RESID { get { return this.RESID; } set { this.RESID = value; } }
|
|
[NotMapped]
|
|
public string map_OLDCUSTOMERID { get { return this.OLDCUSTOMERID; } set { this.OLDCUSTOMERID = value; } }
|
|
[NotMapped]
|
|
public string map_NEWCUSTOMERID { get { return this.NEWCUSTOMERID; } set { this.NEWCUSTOMERID = value; } }
|
|
|
|
}
|
|
public class CustomerRelation
|
|
{
|
|
public string resId { get; set; }
|
|
public string newCustomerid { get; set; }
|
|
public string oldCustomerid { get; set; }
|
|
}
|
|
}
|