26 lines
607 B
C#
26 lines
607 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(100)]
|
|
public string RESID { get; set; }
|
|
|
|
[Key]
|
|
[StringLength(100)]
|
|
public string CUSTOMERID { get; set; }
|
|
|
|
public DateTime? CTIME { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string CUSTOMERFROM { get; set; }
|
|
|
|
[StringLength(20)]
|
|
public string LASTNUM3 { get; set; }
|
|
}
|
|
}
|