TG.WXCRM.V4/Model/Entity/RES_APPLY.cs

58 lines
1.4 KiB
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.RES_APPLY")]
public partial class RES_APPLY
{
[Key]
public decimal PKID { get; set; }
[Required]
[StringLength(100)]
public string RESOURCETAG { get; set; }
[Required]
[StringLength(100)]
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; }
public decimal? SOURCETYPE { get; set; }
public decimal? DEPTID { get; set; }
}
}