智慧建筑第三方功能集成微服务,目的是聚集所有涉及到第三方厂商调用的功能,按照业务功能划分不同微服务
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.
 
 
 
 

51 lines
1.0 KiB

using System;
using System.Collections.Generic;
namespace ParkingLotEntity.DB;
public partial class Calculationformula
{
public long Id { get; set; }
/// <summary>
/// 算法符号
/// </summary>
public string? Ctag { get; set; }
/// <summary>
/// 算法名称
/// </summary>
public string Cname { get; set; } = null!;
/// <summary>
/// 算法说明
/// </summary>
public string? Cdesc { get; set; }
/// <summary>
/// 公式
/// </summary>
public string Formula { get; set; } = null!;
public long? EquipType { get; set; }
/// <summary>
/// 1-瞬时;2-历史累计
/// </summary>
public short Ctype { get; set; }
public string ParamIds { get; set; } = null!;
/// <summary>
/// 创建人
/// </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; }
}