This commit is contained in:
2026-02-06 18:34:35 +08:00
commit f7f4c94c00
3285 changed files with 563208 additions and 0 deletions

View 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; }
}
}

View 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; }
}
}

View 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; }
}
}

View 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; }
}
}

View 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; }
}
}

View 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; }
}
}

View 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; }
}
}