ComplianceServer/oldcode/Core.Model/Entity/RES_APPLY.cs

54 lines
1.3 KiB
C#

namespace CRM.Core.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("RES_APPLY")]
public partial class RES_APPLY
{
[Key]
public decimal PKID { get; set; }
[Required]
[StringLength(100)]
public string RESOURCETAG { get; set; }
[Required]
[StringLength(18)]
public string RESID { get; set; }
[StringLength(50)]
public string USERNAME { get; set; }
[StringLength(1000)]
public string JSONDATA { get; set; }
public DateTime? RTIME { get; set; }
public DateTime? CTIME { get; set; }
public decimal? JSONTYPE { get; set; }
public decimal STATUS { get; set; }
[StringLength(255)]
public string MOBILE { get; set; }
[StringLength(20)]
public string DATATYPE { get; set; }
[StringLength(1000)]
public string EXTXML { get; set; }
[StringLength(50)]
public string ENMOBILE { get; set; }
public decimal? ERR_COUNT { get; set; }
[StringLength(1000)]
public string ERR_STR { get; set; }
[StringLength(200)]
public string KWORD { get; set; }
}
}