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.
39 lines
1.0 KiB
C#
39 lines
1.0 KiB
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Admin.Core.Model.ViewModels
|
|
{
|
|
public class SheetMetaHourDataView
|
|
{
|
|
/// <summary>
|
|
/// 排序
|
|
/// </summary>
|
|
//[SugarColumn(ColumnName = "SEQ")]
|
|
//public int Seq { get; set; }
|
|
/// <summary>
|
|
/// 小时
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "HOUR_TIME")]
|
|
public string HourTime { get; set; }
|
|
/// <summary>
|
|
/// 物料名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "MATERIAL_CODE")]
|
|
public string MaterialName { get; set; }
|
|
/// <summary>
|
|
/// 前板数量
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "FRONTPLATE_AMOUNT")]
|
|
public string FrontPlateAmount { get; set; }
|
|
/// <summary>
|
|
/// 后板数量
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "REARPANEL_AMOUNT")]
|
|
public string RearPanelAmount { get; set; }
|
|
}
|
|
}
|