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

17 lines
420 B
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace WX.CRM.Model.Entity
{
[Table("UPDEV.RES_CUSTOMER_SALES")]
public class RES_CUSTOMER_SALES
{
[Key]
public decimal PKID { get; set; }
public string RESID { get; set; }
public decimal EID { get; set; }
public DateTime CTIME { get; set; }
}
}