Files
6098/Cowain.Bake.Model/Entity/OutputEntity.cs

24 lines
700 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Cowain.Bake.Model.Entity
{
public class OutputEntity
{
public string ProductionDate { get; set; }
public int DayInput { get; set; }
public int DayOutput { get; set; }
public int DayNG { get; set; }
public int NightInput { get; set; }
public int NightOutput { get; set; }
public int NightNG { get; set; }
public string DayWorkTime { get; set; }
public string NightWorkTime { get; set; }
public decimal DayNGRate { get; set; }
public decimal NightNGRate { get; set; }
}
}