21 lines
601 B
C#
21 lines
601 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
[Table("UPDEV.RES_APPLY_UNKNOWN")]
|
|
public class RES_APPLY_UNKNOWN
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
public string CONTENT { get; set; }
|
|
public string CLIENTID { get; set; }
|
|
public string SIGN { get; set; }
|
|
public string RESID { get; set; }
|
|
public string RESOURCETAG { get; set; }
|
|
public decimal ISEXISTS { get; set; }
|
|
public DateTime CTIME { get; set; }
|
|
}
|
|
}
|