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.
27 lines
657 B
27 lines
657 B
using SqlSugar;
|
|
|
|
namespace Entity.DbModel.Station;
|
|
|
|
[SugarTable("charge_water_cooler_relation")]
|
|
public class ChargeWaterCoolerRelation
|
|
{
|
|
/// <summary>
|
|
/// Desc:id
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnName = "id")]
|
|
public int Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 充电机编码
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "charge_code")]
|
|
public string ChargeCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 水冷机编码
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "water_cooler_code")]
|
|
public string WaterCoolerCode { get; set; }
|
|
} |