32 lines
977 B
C#
32 lines
977 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace CRM.Core.Model.Entity
|
|
{
|
|
[Table("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; }
|
|
}
|
|
}
|