AUCMA_SCADA/Admin.Core.Model/ViewModels/ProductInfoView.cs

39 lines
956 B
C#

using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Admin.Core.Model.ViewModels
{
/// <summary>
/// 工位信息
/// </summary>
public class ProductInfoView
{
/// <summary>
/// 公司编码
/// </summary>
[SugarColumn(ColumnName = "PLANT_CODE")]
public string PlanCode { get; set; }
/// <summary>
/// 产品线
/// </summary>
[SugarColumn(ColumnName = "PRODUCT_LINE_CODE")]
public string ProductLineCode { get; set; }
/// <summary>
/// 工序
/// </summary>
[SugarColumn(ColumnName = "PROCESS_CODE")]
public string ProcessCode { get; set; }
/// <summary>
/// 工位
/// </summary>
[SugarColumn(ColumnName = "STATION_CODE")]
public string StationCode { get; set; }
}
}