ComplianceServer/oldcode/Model/Entity/SOFT_MODULE.cs

30 lines
680 B
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.SOFT_MODULE")]
public partial class SOFT_MODULE
{
public decimal? MODULEID { get; set; }
[Required]
[StringLength(50)]
public string MODULENAME { get; set; }
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]
public decimal PKID { get; set; }
}
}