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.
37 lines
842 B
37 lines
842 B
using SqlSugar;
|
|
|
|
namespace Entity.DbModel.Station;
|
|
|
|
/// <summary>
|
|
/// 换电失败原因配置表
|
|
/// </summary>
|
|
[SugarTable("swap_fail_reason_config")]
|
|
public class SwapFailReasonConfig : BaseModel
|
|
{
|
|
public SwapFailReasonConfig()
|
|
{
|
|
}
|
|
/// <summary>
|
|
/// Desc:id
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnName = "id")]
|
|
public int Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:异常原因
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "fail_reason")]
|
|
public string FailReason { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:备注
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "remark")]
|
|
public string? Remark { get; set; }
|
|
} |