using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HighWayIot.Repository.domain
{
///
/// 开炼机物料配置表
///
[SugarTable("zx_open_mix_material")]
public class ZxOpenMixMaterialEntity
{
///
/// 备 注:工位编号
/// 默认值:
///
[SugarColumn(ColumnName = "station_no", IsPrimaryKey = true, IsIdentity = true)]
public int StationNo { get; set; }
///
/// 备 注:物料名称
/// 默认值:
///
[SugarColumn(ColumnName = "material_name")]
public string MaterialName { get; set; } = string.Empty;
}
}