crm.core/code/Crm.Core.Entity/Crm/RES_MYALLOCATERES.cs

43 lines
928 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Crm.Core.Entity.Crm
{
[Table("RES_MYALLOCATERES")]
public class RES_MYALLOCATERES
{
[Key]
public decimal PKID { get; set; }
public decimal RESTYPEID { get; set; }
[Required]
[StringLength(150)]
public string? RESOURCETAG { get; set; }
[Required]
[StringLength(100)]
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; }
}
}