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.
39 lines
1.1 KiB
39 lines
1.1 KiB
using System; |
|
using System.Collections.Generic; |
|
|
|
namespace ParkingLotEntity.DB; |
|
|
|
public partial class ConstEnergyConsumStandard |
|
{ |
|
public long Id { get; set; } |
|
|
|
/// <summary> |
|
/// 1-办公建筑、2-旅馆建筑、3-商场建筑 |
|
/// </summary> |
|
public short ConstType { get; set; } |
|
|
|
/// <summary> |
|
/// 1-A类、2-B类 |
|
/// </summary> |
|
public short ConstType1 { get; set; } |
|
|
|
/// <summary> |
|
/// 1-党政机关办公建筑,2-商业办公建筑,3-党政机关办公建筑,4-商业办公建筑,5-机动车停车库,6-≤三星级,7-四星级,8-五星级,9-一般百货店,10-一般购物中心,11-一般超市,12-餐饮店,13-一般商铺,14-大型百货店,15-大型购物中心,16-大型超市 |
|
/// </summary> |
|
public short ConstType2 { get; set; } |
|
|
|
/// <summary> |
|
/// 1-严寒、2-寒冷、3-夏热冬冷、4-夏热冬暖、5-温和 |
|
/// </summary> |
|
public short ClimateZoneType { get; set; } |
|
|
|
/// <summary> |
|
/// 约束值 |
|
/// </summary> |
|
public double ConstraintValue { get; set; } |
|
|
|
/// <summary> |
|
/// 引导值 |
|
/// </summary> |
|
public double GuideValue { get; set; } |
|
}
|
|
|