TG.WXCRM.V4/Model/Entity/SOFT_MODULE_TG.cs

34 lines
779 B
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.SOFT_MODULE_TG")]
public partial class SOFT_MODULE_TG
{
public decimal? MODULEID { get; set; }
[Key]
[Column(Order = 0)]
[StringLength(50)]
public string MODULENAME { get; set; }
[Key]
[Column(Order = 1)]
public decimal DEFAULTDAYS { get; set; }
public DateTime? CTIME { get; set; }
public decimal? CREATEUSER { get; set; }
public DateTime? UTIME { get; set; }
public decimal? UPDATEUSER { get; set; }
[Key]
[Column(Order = 2)]
public decimal PKID { get; set; }
}
}