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.
65 lines
1.3 KiB
65 lines
1.3 KiB
using System; |
|
using System.Collections.Generic; |
|
|
|
namespace ParkingLotEntity.DB; |
|
|
|
public partial class ConfiguOpenCloseBtn |
|
{ |
|
public long Id { get; set; } |
|
|
|
/// <summary> |
|
/// 开关类型 |
|
/// </summary> |
|
public string? Type { get; set; } |
|
|
|
/// <summary> |
|
/// 标注id |
|
/// </summary> |
|
public long? Conposid { get; set; } |
|
|
|
/// <summary> |
|
/// 开关联参数 |
|
/// </summary> |
|
public long? Openid { get; set; } |
|
|
|
/// <summary> |
|
/// 关关联参数 |
|
/// </summary> |
|
public long? Closeid { get; set; } |
|
|
|
/// <summary> |
|
/// 开值 |
|
/// </summary> |
|
public string? Openvalue { get; set; } |
|
|
|
/// <summary> |
|
/// 关值 |
|
/// </summary> |
|
public string? Closevalue { get; set; } |
|
|
|
/// <summary> |
|
/// 0不需再次确认 1需要再次确认 |
|
/// </summary> |
|
public short? Isconfirm { get; set; } |
|
|
|
public string? Openname { get; set; } |
|
|
|
public string? Closename { get; set; } |
|
|
|
public string? Value { get; set; } |
|
|
|
/// <summary> |
|
/// 0手动 1自动 |
|
/// </summary> |
|
public short? State { get; set; } |
|
|
|
/// <summary> |
|
/// 开文本 |
|
/// </summary> |
|
public string? Opentext { get; set; } |
|
|
|
/// <summary> |
|
/// 关文本 |
|
/// </summary> |
|
public string? Closetext { get; set; } |
|
}
|
|
|