29 lines
728 B
C#
29 lines
728 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.RES_IMPORTRES")]
|
|
public partial class RES_IMPORTRES
|
|
{
|
|
[Key]
|
|
public decimal IMPORTID { get; set; }
|
|
|
|
public decimal? RESTYPEID { get; set; }
|
|
|
|
public decimal? ACTIVITYID { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string RESOURCETAG { get; set; }
|
|
|
|
public decimal? OPTYPE { get; set; }
|
|
|
|
public decimal? CREATEUSER { get; set; }
|
|
|
|
public DateTime? CTIME { get; set; }
|
|
public decimal? RESOURCECOUNT { get; set; }
|
|
public decimal? RESOURCENEWCOUNT { get; set; }
|
|
}
|
|
}
|