using System; using System.ComponentModel.DataAnnotations.Schema; namespace WX.CRM.Model.QueryMap { /// /// 公共的工单类 /// public class ORD_MemoQuery { [NotMapped] public decimal MEMOID { get; set; } [NotMapped] public Nullable INNERUSERID { get; set; } [NotMapped] public Nullable EID { get; set; } [NotMapped] public Nullable MEMOCONTENTID { get; set; } [NotMapped] public string RESID { get; set; } [NotMapped] public Nullable MEMOSTYLEID { get; set; } [NotMapped] public Nullable MEMOTYPEID { get; set; } [NotMapped] public Nullable MEMOSUBTYPEID { get; set; } [NotMapped] public Nullable BUSINESSID { get; set; } [NotMapped] public Nullable CTIME { get; set; } [NotMapped] public Nullable CALLTIME { get; set; } [NotMapped] public Nullable CALLTIMEEND { get; set; } /// /// 客户姓名 /// [NotMapped] public string CNAME { get; set; } /// /// 内容 /// [NotMapped] public string STRCONTENT { get; set; } /// /// 工单类型 /// [NotMapped] public int MEMO_TYPE { get; set; } [NotMapped] public string deptCode { get; set; } [NotMapped] public string userName { get; set; } //投顾下单人 [NotMapped] public string TGsalesName { get; set; } //投顾下单人 [NotMapped] public decimal? TGsalesEID { get; set; } [NotMapped] public decimal? ExtMemoId { get; set; } [NotMapped] public string QW { get; set; } [NotMapped] public string CP { get; set; } [NotMapped] public string ZHIBO { get; set; } [NotMapped] public string ZHIBOTXT { get; set; } [NotMapped] public string MYD { get; set; } [NotMapped] public string MYDTXT { get; set; } [NotMapped] public string COMPANYNAME { get; set; } } public class ORD_MemoView { public ORD_MemoView(decimal mEMOID, string tYPENAME, string sUBTYPENAME, string sTRCONTENT, string iNNERUSERNAME, string cTIME) { MEMOID = mEMOID; TYPENAME = tYPENAME; SUBTYPENAME = sUBTYPENAME; STRCONTENT = sTRCONTENT; INNERUSERNAME = iNNERUSERNAME; CTIME = cTIME; } public decimal MEMOID { get; set; } public string TYPENAME { get; set; } public string SUBTYPENAME { get; set; } public string STRCONTENT { get; set; } public string INNERUSERNAME { get; set; } public string CTIME { get; set; } } public class ord_memoExport { ////主客户ID //[NotMapped] public string customerid { get; set; } //客户ID [NotMapped] public string resid { get; set; } //其他相关客户ID [NotMapped] public string otherResid { get; set; } //资源归属 [NotMapped] public string resAscription { get; set; } [NotMapped] public string name { get; set; } [NotMapped] public DateTime? ctime { get; set; } [NotMapped] public DateTime? callTime { get; set; } [NotMapped] public decimal? innerUserId { get; set; } } public class Res_OrderView { public string resid { get; set; } public string ORDERID { get; set; } public string SZZYORDERID { get; set; } public string SUBPRODUCTNAME { get; set; } public string ORDERTYPE { get; set; } public string ORDERSTATUS { get; set; } public string CTIME { get; set; } public string OTIME { get; set; } public string NEEDPAY { get; set; } public string FINALPAY { get; set; } public string ARRIVALPAY { get; set; } public string ARRIVALTIME { get; set; } public string TEAMSERVE { get; set; } public string OPENDAYS { get; set; } public string GIFTDAYS { get; set; } public string GIFTDAYS2 { get; set; } public string ISOPEN { get; set; } public string CONTRACTCODE { get; set; } public string RISKCTRLSTATUS { get; set; } public string ORDERSTATUSNAME { get; set; } public decimal? eid { get; set; } public string companyName { get; set; } } public class WXSzzyOrderDto { public int ORDERID { get; set; } public long? SZZYORDERID { get; set; } public string SUBPRODUCTNAME { get; set; } public string PRODUCTCODE { get; set; } /// /// 合同签订时间 /// public DateTime? contractctime { get; set; } public int? ORDERTYPE { get; set; } public string SOFTUSERNAME { get; set; } public string ORDERSTATUS { get; set; } public DateTime? CTIME { get; set; } public DateTime? OTIME { get; set; } public decimal? NEEDPAY { get; set; } public decimal? FINALPAY { get; set; } public decimal? ARRIVALPAY { get; set; } public DateTime? ARRIVALTIME { get; set; } public int? TEAMSERVE { get; set; } public int? OPENDAYS { get; set; } public int? giftdays { get; set; } public int? giftdays2 { get; set; } public int? ISOPEN { get; set; } public string CONTRACTCODE { get; set; } public int RISKCTRLSTATUS { get; set; } public string ORDERSTATUSNAME { get; set; } public string ChannelName { get; set; } public int? CHANNEL { get; set; } } public class HHUserDto { public string ResId { get; set; } public string userid { get; set; } } }