120 lines
3.4 KiB
C#
120 lines
3.4 KiB
C#
using System;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.QueryMap
|
|
{
|
|
public class CustomerCategoryLog
|
|
{
|
|
[NotMapped]
|
|
public string RESID { get; set; }
|
|
[NotMapped]
|
|
public string TRADECODE { get; set; }
|
|
[NotMapped]
|
|
public string TRADENAME { get; set; }
|
|
[NotMapped]
|
|
public string CATEGORYNAME { get; set; }
|
|
[NotMapped]
|
|
public DateTime? CTIME { get; set; }
|
|
[NotMapped]
|
|
public DateTime? UTIME { get; set; }
|
|
[NotMapped]
|
|
public DateTime? BAKTIME { get; set; }
|
|
[NotMapped]
|
|
public string REMARK { get; set; }
|
|
[NotMapped]
|
|
public string CATEGORYTYPE { get; set; }
|
|
}
|
|
public class CustomerCategory
|
|
{
|
|
[NotMapped]
|
|
public string RESID { get; set; }
|
|
[NotMapped]
|
|
public string TRADECODE { get; set; }
|
|
[NotMapped]
|
|
public string TRADENAME { get; set; }
|
|
[NotMapped]
|
|
public DateTime? CREATIONACCOUNTDATE { get; set; }
|
|
[NotMapped]
|
|
public decimal? SCHEDULESTATUS { get; set; }
|
|
[NotMapped]
|
|
public string BANK { get; set; }
|
|
[NotMapped]
|
|
public string CONTRACTSTATUS { get; set; }
|
|
[NotMapped]
|
|
public DateTime? CLAIMTIME { get; set; }
|
|
[NotMapped]
|
|
public decimal EID { get; set; }
|
|
[NotMapped]
|
|
public string UNAME { get; set; }
|
|
[NotMapped]
|
|
public string GNAME { get; set; }
|
|
[NotMapped]
|
|
public string ACCOUNTFROM { get; set; }
|
|
[NotMapped]
|
|
public decimal? CATEGORYID { get; set; }
|
|
[NotMapped]
|
|
public string CATEGORYNAME { get; set; }
|
|
[NotMapped]
|
|
public decimal CLAIMEID { get; set; }
|
|
[NotMapped]
|
|
public DateTime? CTIME { get; set; }
|
|
[NotMapped]
|
|
public DateTime? UTIME { get; set; }
|
|
}
|
|
|
|
public class CustomerCategoryManual
|
|
{
|
|
[NotMapped]
|
|
public string RESID { get; set; }
|
|
[NotMapped]
|
|
public string TRADECODE { get; set; }
|
|
[NotMapped]
|
|
public string TRADENAME { get; set; }
|
|
[NotMapped]
|
|
public decimal EID { get; set; }
|
|
[NotMapped]
|
|
public string UNAME { get; set; }
|
|
[NotMapped]
|
|
public string CONTRACTSTATUS { get; set; }
|
|
[NotMapped]
|
|
public string ACCOUNTFROM { get; set; }
|
|
[NotMapped]
|
|
public decimal? CATEGORYID { get; set; }
|
|
[NotMapped]
|
|
public string CATEGORYNAME { get; set; }
|
|
[NotMapped]
|
|
public decimal? ENDAMT { get; set; }
|
|
[NotMapped]
|
|
public decimal? CURRIGHTS { get; set; }
|
|
[NotMapped]
|
|
public decimal? SCHEDULESTATUS { get; set; }
|
|
|
|
}
|
|
|
|
public class CustomerCategoryParameter
|
|
{
|
|
[NotMapped]
|
|
public string A1 { get; set; }
|
|
[NotMapped]
|
|
public string A2 { get; set; }
|
|
[NotMapped]
|
|
public string F1 { get; set; }
|
|
[NotMapped]
|
|
public string F2 { get; set; }
|
|
[NotMapped]
|
|
public string Fx1_Fx2 { get; set; }
|
|
[NotMapped]
|
|
public string G1x1 { get; set; }
|
|
[NotMapped]
|
|
public string G1x2 { get; set; }
|
|
[NotMapped]
|
|
public string G1x3 { get; set; }
|
|
[NotMapped]
|
|
public string G2x2 { get; set; }
|
|
[NotMapped]
|
|
public string G2x3 { get; set; }
|
|
[NotMapped]
|
|
public string G2x4 { get; set; }
|
|
}
|
|
}
|