1
0
Fork 0
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

135 lines
3.3 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
namespace Models
{
/// <summary>
///
///</summary>
[SugarTable("zx_recipe_para")]
public class ZxRecipeParaEntity
{
/// <summary>
/// 备 注:
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
/// <summary>
/// 备 注:关联配方号
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "recipe_code")]
public string RecipeCode { get; set; } = string.Empty;
/// <summary>
/// 备 注:
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "P1")]
public int? P1 { get; set; }
/// <summary>
/// 备 注:
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "P2")]
public int? P2 { get; set; }
/// <summary>
/// 备 注:
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "P31")]
public int? P31 { get; set; }
/// <summary>
/// 备 注:
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "P32")]
public int? P32 { get; set; }
/// <summary>
/// 备 注:
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "P41")]
public int? P41 { get; set; }
/// <summary>
/// 备 注:
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "P42")]
public int? P42 { get; set; }
/// <summary>
/// 备 注:
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "P51")]
public int? P51 { get; set; }
/// <summary>
/// 备 注:
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "P52")]
public int? P52 { get; set; }
/// <summary>
/// 备 注:钢圈尺寸
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "rim_inch")]
public int? RimInch { get; set; }
/// <summary>
/// 备 注:灯标宽度
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "light_width")]
public int? LightWidth { get; set; }
/// <summary>
/// 备 注:减速距离
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "slow_distance")]
public int? SlowDistance { get; set; }
/// <summary>
/// 备 注:停止距离
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "stop_distance")]
public int? StopDistance { get; set; }
/// <summary>
/// 备 注:胎体重量
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "tire_weight")]
public int? TireWeight { get; set; }
/// <summary>
/// 备 注:规格名
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "spec_name")]
public string SpecName { get; set; } = string.Empty;
/// <summary>
/// 备 注:规格号
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "spec_code")]
public int? SpecCode { get; set; }
}
}