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

35 lines
758 B
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace CRM.Core.Model.Entity
{
[Table("BAS_INNERGROUP")]
public partial class BAS_INNERGROUP
{
[Key]
public decimal GID { get; set; }
public decimal? SALEDEPTID { get; set; }
[Required]
[StringLength(50)]
public string GNAME { get; set; }
public decimal? DEPTID { get; set; }
public DateTime? CTIME { get; set; }
public decimal? CREATEUSER { get; set; }
public DateTime? UTIME { get; set; }
public decimal? UPDATEUSER { get; set; }
public short? ISHIDE { get; set; }
public short? ISSALEDEPT { get; set; }
}
}