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.
54 lines
1.1 KiB
54 lines
1.1 KiB
using System; |
|
using System.Collections.Generic; |
|
|
|
namespace ParkingLotEntity.DB; |
|
|
|
public partial class CgScreen |
|
{ |
|
public long Id { get; set; } |
|
|
|
public long ProjectId { get; set; } |
|
|
|
public long? MenuId { get; set; } |
|
|
|
public short ScreenType { get; set; } |
|
|
|
public string? Name { get; set; } |
|
|
|
public long ParentId { get; set; } |
|
|
|
public string? ConfigJson { get; set; } |
|
|
|
public string? Propertys { get; set; } |
|
|
|
public short IconShow { get; set; } |
|
|
|
public int? Order { get; set; } |
|
|
|
public long? CreateBy { get; set; } |
|
|
|
public DateTime? CreateTime { get; set; } |
|
|
|
public long? UpdateBy { get; set; } |
|
|
|
public DateTime? UpdateTime { get; set; } |
|
|
|
public short IsDeleted { get; set; } |
|
|
|
/// <summary> |
|
/// 显示网格 默认false |
|
/// </summary> |
|
public short Grid { get; set; } |
|
|
|
/// <summary> |
|
/// 显示标尺 默认true |
|
/// </summary> |
|
public short Rule { get; set; } |
|
|
|
/// <summary> |
|
/// 网格大小默认20 |
|
/// </summary> |
|
public int GridSize { get; set; } |
|
|
|
public string? Mode { get; set; } |
|
}
|
|
|