1
This commit is contained in:
36
iMES.Entity/DomainModels/Print/HomeProcessNumberOutput.cs
Normal file
36
iMES.Entity/DomainModels/Print/HomeProcessNumberOutput.cs
Normal file
@@ -0,0 +1,36 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using iMES.Entity;
|
||||
using Newtonsoft.Json.Linq;
|
||||
|
||||
namespace iMES.Entity.DomainModels
|
||||
{
|
||||
public class HomeProcessNumberOutput
|
||||
{
|
||||
/// <summary>
|
||||
/// 工序名称
|
||||
/// </summary>
|
||||
public string ProcessName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 计划数
|
||||
/// </summary>
|
||||
|
||||
public string PlanQty { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 良品数
|
||||
/// </summary>
|
||||
public string GoodQty { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 不良品数
|
||||
/// </summary>
|
||||
public string NoGoodQty { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user