ComplianceServer/oldcode/Model/Entity/CSVR_FAVORITECUSTOMER.cs

29 lines
658 B
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.CSVR_FAVORITECUSTOMER")]
public partial class CSVR_FAVORITECUSTOMER
{
[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; }
}
}