ComplianceServer/oldcode/Model/Entity/WX_RESOURCECHECK_NOTE.cs

18 lines
477 B
C#

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