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

23 lines
507 B
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.BAS_NOTICE")]
public partial class BAS_NOTICE
{
[Key]
public decimal PKID { get; set; }
[StringLength(100)]
public string TITLE { get; set; }
public string CONTENT { get; set; }
public DateTime? CTIME { get; set; }
public decimal? INNERUSERID { get; set; }
}
}