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

57 lines
1.5 KiB
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace WX.CRM.Model.Entity
{
[Table("UPDEV.CSVR_FAVORITECUSTOMER_HIS")]
public class CSVR_FAVORITECUSTOMER_HIS
{
[Key]
public decimal PKID { get; set; }
public decimal SALESID { get; set; }
[Required]
[StringLength(100)]
public string RESID { get; set; }
[Required]
[StringLength(50)]
public string PARAKEY { get; set; }
[StringLength(1000)]
public string MEMO { get; set; }
public DateTime CTIME { get; set; }
public string REMARK { get; set; }
public decimal OPERATOR { get; set; }
public string ACTION { get; set; }
public DateTime ACTIONTIME { get; set; }
public string NAME { get; set; }
}
public class CSVR_FAVORITECUSTOMER_HIS_View
{
public decimal PKID { get; set; }
public decimal SALESID { get; set; }
public string RESID { get; set; }
public string PARAKEY { get; set; }
public string MEMO { get; set; }
public DateTime CTIME { get; set; }
public string REMARK { get; set; }
public decimal OPERATOR { get; set; }
public string ACTION { get; set; }
public DateTime ACTIONTIME { get; set; }
public string NAME { get; set; }
public int? DeptId { get; set; }
public string DeptName { get; set; }
}
}