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.
45 lines
1.2 KiB
C#
45 lines
1.2 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 StationHourAmountView
|
|
{
|
|
/// <summary>
|
|
/// 产线编码
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "ROWNUM")]
|
|
public string RowNum { get; set; }
|
|
/// <summary>
|
|
/// 产线编码
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "PRODUCTLINE_CODE")]
|
|
public string ProductlineCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "PRODUCT_DATE")]
|
|
public string ProductDate { get; set; }
|
|
/// <summary>
|
|
/// 小时
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "PRODUCT_HOUR")]
|
|
public string ProductHour { get; set; }
|
|
/// <summary>
|
|
/// 背板数量
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "BACKPANELHOURAMOUNT")]
|
|
public string BackPanelHourAmount { get; set; }
|
|
/// <summary>
|
|
/// 前板数量
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "SIDPANELHOURAMOUNT")]
|
|
public string SidPanelHourAmount { get; set; }
|
|
}
|
|
}
|