18 lines
519 B
C#
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; }
|
|
}
|
|
} |