ComplianceServer/oldcode/Model/Entity/CSVR_FAVORITECUSTOMER_HIS.cs

34 lines
871 B
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(18)]
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; }
}
}