ComplianceServer/oldcode/Model/Entity/BAS_PARAMETERGROUP.cs

32 lines
994 B
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.BAS_PARAMETERGROUP")]
public partial class BAS_PARAMETERGROUP
{
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
public BAS_PARAMETERGROUP()
{
BAS_PARAMETER = new HashSet<BAS_PARAMETER>();
}
[Key]
[StringLength(50)]
public string GROUPID { get; set; }
[StringLength(50)]
public string GROUPNAME { get; set; }
public DateTime? CTIME { get; set; }
public decimal? CREATEUSER { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection<BAS_PARAMETER> BAS_PARAMETER { get; set; }
}
}