首次提交:添加src文件夹代码
This commit is contained in:
23
Cowain.Bake.Model/Entity/OutputEntity.cs
Normal file
23
Cowain.Bake.Model/Entity/OutputEntity.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user