ComplianceServer/oldcode/Model/Entity/RES_CUSTOMER_CSH.cs

26 lines
605 B
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.RES_CUSTOMER_CSH")]
public partial class RES_CUSTOMER_CSH
{
[StringLength(18)]
public string RESID { get; set; }
[Key]
[StringLength(18)]
public string CUSTOMERID { get; set; }
public DateTime? CTIME { get; set; }
[StringLength(100)]
public string CUSTOMERFROM { get; set; }
[StringLength(20)]
public string LASTNUM3 { get; set; }
}
}