48 lines
1.1 KiB
C#
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_POOLLOG_HIS")]
|
|
public partial class RES_POOLLOG_HIS
|
|
{
|
|
[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; }
|
|
}
|
|
}
|