ComplianceServer/oldcode/Model/Entity/RES_MYALLOCATERES.cs

40 lines
942 B
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.RES_MYALLOCATERES")]
public partial class RES_MYALLOCATERES
{
[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; }
public decimal? SGID { get; set; }
}
}