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

18 lines
407 B
C#

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