using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations.Schema;
using Znyc.Admin.Commons.Entitys;
namespace Znyc.Admin.Security.Entitys
{
///
/// 车辆表分组
///
[Table("dc_vehicle_group")]
[Comment("车辆表分组")]
public class VehicleGroup : BaseEntity
{
public new long Id { get; set; }
///
/// 公司Id
///
[Comment("公司Id")]
public long CompanyId { get; set; }
///
/// 名称
///
[Comment("名称")]
public string Name { get; set; }
///
/// 父级权限Id
///
[Comment("父级权限Id")]
public long ParentId { get; set; }
///
/// 状态(字典 0正常 1停用 2删除)
///
[Comment("状态")]
public int Status { get; set; }
}
}