39 lines
893 B
C#
39 lines
893 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.RES_MYVALIDRES")]
|
|
public partial class RES_MYVALIDRES
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
|
|
public decimal RESTYPEID { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(150)]
|
|
public string RESOURCETAG { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(18)]
|
|
public string RESID { get; set; }
|
|
|
|
public decimal INNERUSERID { get; set; }
|
|
|
|
public short? ISVIEW { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string MEMO { get; set; }
|
|
|
|
public DateTime? DISTIME { get; set; }
|
|
|
|
public decimal? DISUSERID { get; set; }
|
|
|
|
public decimal DIS_TIMES { get; set; }
|
|
|
|
public decimal TURNING_ID { get; set; }
|
|
}
|
|
}
|