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

20 lines
454 B
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.BAS_COMPANYCAMPAIN")]
public partial class BAS_COMPANYCAMPAIN
{
[Key]
public decimal PKID { get; set; }
public decimal? COMPANYID { get; set; }
public decimal? CAMPAINID { get; set; }
public DateTime? CTIME { get; set; }
}
}