ComplianceServer/oldcode/Core.Model/Entity/BAS_PARAMETER.cs

47 lines
1.1 KiB
C#

namespace CRM.Core.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("BAS_PARAMETER")]
public partial class BAS_PARAMETER
{
[Required]
[StringLength(50)]
[Key]
public string PARAKEY { get; set; }
[StringLength(50)]
public string GROUPID { get; set; }
public string PARAVALUE { get; set; }
[StringLength(100)]
public string PARATYPE { get; set; }
[StringLength(255)]
public string REMARK { get; set; }
public DateTime? CTIME { get; set; }
public decimal? CREATEUSER { get; set; }
public DateTime? UTIME { get; set; }
public decimal? UPDATEUSER { get; set; }
[StringLength(50)]
public string EDITFORM { get; set; }
[StringLength(50)]
public string PARANAME { get; set; }
[StringLength(6)]
public string DEPTCDOE { get; set; }
public virtual BAS_PARAMETERGROUP BAS_PARAMETERGROUP { get; set; }
}
}