You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
990 B
40 lines
990 B
2 years ago
|
using Microsoft.EntityFrameworkCore;
|
||
|
using System.ComponentModel.DataAnnotations.Schema;
|
||
|
using Znyc.Admin.Commons.Entitys;
|
||
|
|
||
|
namespace Znyc.Admin.Security.Entitys
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 车辆表分组
|
||
|
/// </summary>
|
||
|
[Table("dc_vehicle_group")]
|
||
|
[Comment("车辆表分组")]
|
||
|
public class VehicleGroup : BaseEntity
|
||
|
{
|
||
|
public new long Id { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 公司Id
|
||
|
/// </summary>
|
||
|
[Comment("公司Id")]
|
||
|
public long CompanyId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 名称
|
||
|
/// </summary>
|
||
|
[Comment("名称")]
|
||
|
public string Name { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 父级权限Id
|
||
|
/// </summary>
|
||
|
[Comment("父级权限Id")]
|
||
|
public long ParentId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 状态(字典 0正常 1停用 2删除)
|
||
|
/// </summary>
|
||
|
[Comment("状态")]
|
||
|
public int Status { get; set; }
|
||
|
}
|
||
|
}
|