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.
52 lines
1.0 KiB
52 lines
1.0 KiB
using System; |
|
using System.Collections.Generic; |
|
|
|
namespace ParkingLotEntity.DB; |
|
|
|
public partial class CalculationParam |
|
{ |
|
public long Id { get; set; } |
|
|
|
/// <summary> |
|
/// 参数 |
|
/// </summary> |
|
public string ParamTag { get; set; } = null!; |
|
|
|
/// <summary> |
|
/// 参数名称 |
|
/// </summary> |
|
public string? ParamName { get; set; } |
|
|
|
/// <summary> |
|
/// 标准点Id |
|
/// </summary> |
|
public long StandarParamId { get; set; } |
|
|
|
/// <summary> |
|
/// 物理性参数表Id |
|
/// </summary> |
|
public long PhyParamId { get; set; } |
|
|
|
/// <summary> |
|
/// 是否为标准工况 |
|
/// </summary> |
|
public bool IsStandar { get; set; } |
|
|
|
/// <summary> |
|
/// 单位 |
|
/// </summary> |
|
public string? Unit { get; set; } |
|
|
|
/// <summary> |
|
/// 创建人Id |
|
/// </summary> |
|
public long CreatorId { get; set; } |
|
|
|
public DateTime? CreateTime { get; set; } |
|
|
|
public long? UpdateId { get; set; } |
|
|
|
public DateTime? UpdateTime { get; set; } |
|
|
|
public long OwnerId { get; set; } |
|
}
|
|
|