31 lines
624 B
C#
31 lines
624 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace CRM.Core.Model.EntityFB
|
|
{
|
|
public class bas_innergroup
|
|
{
|
|
|
|
[Key]
|
|
public decimal gid { get; set; }
|
|
|
|
public decimal? saledeptid { get; set; }
|
|
|
|
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; }
|
|
}
|
|
}
|