ComplianceServer/oldcode/Model/Entity/RES_POOLLOG.cs

43 lines
1013 B
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.RES_POOLLOG")]
public partial class RES_POOLLOG
{
[Key]
public decimal LOGID { get; set; }
[Required]
[StringLength(18)]
public string RESID { get; set; }
public decimal? RESTYPEID { get; set; }
public decimal ACTIVITYID { get; set; }
public decimal? COMPANYID { get; set; }
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; }
public string KWORD { get; set; }
}
}