22 lines
498 B
C#
22 lines
498 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.L2_SOFT_MODULE")]
|
|
public partial class L2_SOFT_MODULE
|
|
{
|
|
[Key]
|
|
public decimal MODULEID { get; set; }
|
|
|
|
//[Required]
|
|
[StringLength(50)]
|
|
public string MODULENAME { get; set; }
|
|
|
|
public decimal DEFAULTDAYS { get; set; }
|
|
|
|
public DateTime? CTIME { get; set; }
|
|
}
|
|
}
|