namespace ZhiYi.Core.Repository.Entities
{
///
/// 组织表
///
[SugarTable("zhiyi_group")]
public class ZhiYi_Group : SugarEntity
{
///
/// 账号ID
///
public long UserId { get; set; }
///
/// 组名
///
public string GroupName { get; set; }
///
/// 创建时间
///
public DateTime? CreateTime { get; set; }
///
/// 创建人
///
public long CreateBy { get; set; }
}
}