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.

165 lines
4.6 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
namespace HighWayIot.Repository.domain
{
/// <summary>
///
///</summary>
[SugarTable("zx_mes_plan_transfer")]
public class ZxMesPlanTransferEntity
{
/// <summary>
/// 备 注:主键
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "uuid", IsPrimaryKey = true)]
public string Uuid { get; set; }
/// <summary>
/// 备 注:同步标记
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "request_flag")]
public bool? RequestFlag { get; set; }
/// <summary>
/// 备 注:标称尺度
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "recipe_name")]
public string RecipeName { get; set; } = string.Empty;
/// <summary>
/// 备 注:SPEC名称
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "spec_name")]
public string SpecName { get; set; } = string.Empty;
/// <summary>
/// 备 注:SPEC编号
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "spec_code")]
public string SpecCode { get; set; } = string.Empty;
/// <summary>
/// 备 注:钢圈尺寸
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "rim_inch")]
public int? RimInch { get; set; }
/// <summary>
/// 备 注:固定胶宽度
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "fix_rub_width")]
public int? FixRubWidth { get; set; }
/// <summary>
/// 备 注:胎体重量
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "tire_weight")]
public float? TireWeight { get; set; }
/// <summary>
/// 备 注:物料名称1基部胶
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "material_name_1")]
public string MaterialName1 { get; set; } = string.Empty;
/// <summary>
/// 备 注:贴合层数1基部胶
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "material_layers_1")]
public int? MaterialLayers1 { get; set; }
/// <summary>
/// 备 注:重量1基部胶
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "material_weight_1")]
public double? MaterialWeight1 { get; set; }
/// <summary>
/// 备 注:宽度1基部胶
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "material_width_1")]
public double? MaterialWidth1 { get; set; }
/// <summary>
/// 备 注:物料名称2缓冲胶
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "material_name_2")]
public string MaterialName2 { get; set; } = string.Empty;
/// <summary>
/// 备 注:贴合层数2缓冲胶
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "material_layers_2")]
public int? MaterialLayers2 { get; set; }
/// <summary>
/// 备 注:重量2缓冲胶
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "material_weight_2")]
public double? MaterialWeight2 { get; set; }
/// <summary>
/// 备 注:宽度2缓冲胶
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "material_width_2")]
public double? MaterialWidth2 { get; set; }
/// <summary>
/// 备 注:物料名称3胎面胶
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "material_name_3")]
public string MaterialName3 { get; set; } = string.Empty;
/// <summary>
/// 备 注:贴合层数3胎面胶
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "material_layers_3")]
public int? MaterialLayers3 { get; set; }
/// <summary>
/// 备 注:重量3胎面胶
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "material_weight_3")]
public double? MaterialWeight3 { get; set; }
/// <summary>
/// 备 注:宽度3胎面胶
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "material_width_3")]
public double? MaterialWidth3 { get; set; }
/// <summary>
/// 备 注:更新时间
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "sync_time")]
public DateTime? SyncTime { get; set; }
}
}