ComplianceServer/oldcode/Model/Entity/RES_POOLLOGBAK_20151130.cs

48 lines
1.1 KiB
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.RES_POOLLOGBAK_20151130")]
public partial class RES_POOLLOGBAK_20151130
{
[Key]
[Column(Order = 0)]
public decimal LOGID { get; set; }
[Key]
[Column(Order = 1)]
[StringLength(18)]
public string RESID { get; set; }
public decimal? RESTYPEID { get; set; }
[Key]
[Column(Order = 2)]
public decimal ACTIVITYID { get; set; }
public decimal? COMPANYID { get; set; }
[Key]
[Column(Order = 3)]
public DateTime CTIME { get; set; }
public DateTime? APPLYTIME { get; set; }
public decimal? APPLYID { get; set; }
[StringLength(100)]
public string RESOURCETAG { get; set; }
[StringLength(20)]
public string DATATYPE { get; set; }
[StringLength(1000)]
public string EXTXML { get; set; }
[StringLength(30)]
public string USERNAME { get; set; }
}
}