1
This commit is contained in:
26
iMES.Entity/DomainModels/Print/BoardEntity.cs
Normal file
26
iMES.Entity/DomainModels/Print/BoardEntity.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
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 BoardEntity
|
||||
{
|
||||
/// <summary>
|
||||
/// 名称
|
||||
/// </summary>
|
||||
public string name { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 数值
|
||||
/// </summary>
|
||||
|
||||
public int data { get; set; }
|
||||
}
|
||||
}
|
||||
36
iMES.Entity/DomainModels/Print/HomeNumberOutput.cs
Normal file
36
iMES.Entity/DomainModels/Print/HomeNumberOutput.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 HomeNumberOutput
|
||||
{
|
||||
/// <summary>
|
||||
/// 名称
|
||||
/// </summary>
|
||||
public string ItemName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 背景颜色
|
||||
/// </summary>
|
||||
|
||||
public string Background { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 编码
|
||||
/// </summary>
|
||||
public string ItemCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 数量
|
||||
/// </summary>
|
||||
public string Qty { get; set; }
|
||||
}
|
||||
}
|
||||
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; }
|
||||
}
|
||||
}
|
||||
31
iMES.Entity/DomainModels/Print/NoticeOutput.cs
Normal file
31
iMES.Entity/DomainModels/Print/NoticeOutput.cs
Normal file
@@ -0,0 +1,31 @@
|
||||
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 NoticeOutput
|
||||
{
|
||||
/// <summary>
|
||||
/// 标题
|
||||
/// </summary>
|
||||
public string title { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 内容
|
||||
/// </summary>
|
||||
|
||||
public string message { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 日期
|
||||
/// </summary>
|
||||
public string date { get; set; }
|
||||
}
|
||||
}
|
||||
41
iMES.Entity/DomainModels/Print/PrintFieldOutput.cs
Normal file
41
iMES.Entity/DomainModels/Print/PrintFieldOutput.cs
Normal file
@@ -0,0 +1,41 @@
|
||||
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;
|
||||
|
||||
namespace iMES.Entity.DomainModels
|
||||
{
|
||||
public class PrintFieldOutput
|
||||
{
|
||||
/// <summary>
|
||||
///数据
|
||||
/// </summary>
|
||||
public List<filed> data { get; set; }
|
||||
/// <summary>
|
||||
///消息
|
||||
/// </summary>
|
||||
public string message { get; set; }
|
||||
/// <summary>
|
||||
///状态
|
||||
/// </summary>
|
||||
public int status { get; set; }
|
||||
public bool success { get; set; }
|
||||
}
|
||||
public class filed
|
||||
{
|
||||
public string id { get; set; }
|
||||
public string name { get; set; }
|
||||
public List<filedDetail> fields { get; set; }
|
||||
|
||||
public string tag { get; set; }
|
||||
}
|
||||
public class filedDetail
|
||||
{
|
||||
public string key { get; set; }
|
||||
public string name { get; set; }
|
||||
}
|
||||
}
|
||||
33
iMES.Entity/DomainModels/Print/PrintOutput.cs
Normal file
33
iMES.Entity/DomainModels/Print/PrintOutput.cs
Normal file
@@ -0,0 +1,33 @@
|
||||
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 PrintOutput
|
||||
{
|
||||
/// <summary>
|
||||
///数据
|
||||
/// </summary>
|
||||
public JObject data { get; set; }
|
||||
|
||||
/// <summary>
|
||||
///消息
|
||||
/// </summary>
|
||||
|
||||
public string message { get; set; }
|
||||
|
||||
/// <summary>
|
||||
///状态
|
||||
/// </summary>
|
||||
public int status { get; set; }
|
||||
|
||||
public bool success { get; set; }
|
||||
}
|
||||
}
|
||||
33
iMES.Entity/DomainModels/Print/PrintOutputArray.cs
Normal file
33
iMES.Entity/DomainModels/Print/PrintOutputArray.cs
Normal file
@@ -0,0 +1,33 @@
|
||||
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 PrintOutputArray
|
||||
{
|
||||
/// <summary>
|
||||
///数据
|
||||
/// </summary>
|
||||
public JArray data { get; set; }
|
||||
|
||||
/// <summary>
|
||||
///消息
|
||||
/// </summary>
|
||||
|
||||
public string message { get; set; }
|
||||
|
||||
/// <summary>
|
||||
///状态
|
||||
/// </summary>
|
||||
public int status { get; set; }
|
||||
|
||||
public bool success { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user