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

22 lines
579 B
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace WX.CRM.Model.Entity
{
[Table("UPDEV.BAS_BUSINESSCUSTOMER")]
public class BAS_BUSINESSCUSTOMER
{
[Key]
public decimal ID { get; set; }
public decimal BUSINESSID { get; set; }
[StringLength(255)]
public string CUSTOMERFROM { get; set; }
[StringLength(255)]
public string RESID { get; set; }
public DateTime CTIME { get; set; }
public DateTime UTIME { get; set; }
}
}