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

18 lines
519 B
C#

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