52 lines
1.3 KiB
C#
Raw Normal View History

2025-11-11 09:50:52 +08:00
namespace RIZO.Model.Mes.Dto.MasterData
Squashed commit of the following: commit ac4c7383285b88b2f326f6979f735496fa25d0b4 Author: quowingwang <guoqingwang.ruizhiao> Date: Mon Nov 10 19:32:04 2025 +0800 修改 commit be79fbda5de0846209dcab9d80300a920d470656 Author: quowingwang <guoqingwang.ruizhiao> Date: Mon Nov 10 19:23:50 2025 +0800 质量设定模糊查询 commit cd3b6582ad627b9f0bf82896b65e0a25971ecb97 Author: quowingwang <guoqingwang.ruizhiao> Date: Mon Nov 10 18:57:53 2025 +0800 质量设定 commit a2823cec8987b4f5c51029bf1456802df15e7d0d Author: quowingwang <guoqingwang.ruizhiao> Date: Mon Nov 10 16:28:05 2025 +0800 导出 commit 5a7bf882d0b65746e1041f252968b3c0ce91b8b2 Author: quowingwang <guoqingwang.ruizhiao> Date: Mon Nov 10 15:43:30 2025 +0800 导出 commit 2793eda822247b8480737cdb30b82a2dbb1a8881 Author: quowingwang <guoqingwang.ruizhiao> Date: Mon Nov 10 14:44:46 2025 +0800 条件查询 commit a5c8cb23b0058ca510c7b66fbf7e7be3f696c9eb Author: quowingwang <guoqingwang.ruizhiao> Date: Mon Nov 10 14:16:23 2025 +0800 查询工序详情 commit f1a8053c2fb65d37e41a9a16a10ee75aff99c00e Author: quowingwang <guoqingwang.ruizhiao> Date: Mon Nov 10 11:51:48 2025 +0800 导入 commit 4867fe688058817e14fc46bb88b8c6b20688dd19 Author: quowingwang <guoqingwang.ruizhiao> Date: Mon Nov 10 11:29:08 2025 +0800 删除修改 commit 82e5eef5f6aa12679810985890528fa6a6004584 Author: quowingwang <guoqingwang.ruizhiao> Date: Mon Nov 10 11:27:18 2025 +0800 批量删除修改 commit 58e8c088fd01b97a54c62f4027673cab446c8a11 Author: quowingwang <guoqingwang.ruizhiao> Date: Mon Nov 10 10:40:02 2025 +0800 修改 commit 61781194bd1310bc5187a0769ace449f7974bd35 Author: quowingwang <guoqingwang.ruizhiao> Date: Mon Nov 10 10:37:11 2025 +0800 存用户名称 commit 952a52d30241ec49f2a354138e5397ae92aaea03 Author: quowingwang <guoqingwang.ruizhiao> Date: Mon Nov 10 10:00:23 2025 +0800 工艺路线导入 commit d4f43ccb892be7efa7531eb7e712fb71185c12ad Author: quowingwang <guoqingwang.ruizhiao> Date: Mon Nov 10 08:48:53 2025 +0800 工艺路线 commit c7e4c77e4d61609b7eac06a47b42d37023341527 Author: quowingwang <guoqingwang.ruizhiao> Date: Fri Nov 7 09:24:24 2025 +0800 工艺管理
2025-11-11 08:35:41 +08:00
{
/// <summary>
/// 质量不良原因字典表查询对象
/// </summary>
public class QualityDefectReasonQueryDto : PagerInfo
{
public string ReasonName { get; set; }
public string Description { get; set; }
}
/// <summary>
/// 质量不良原因字典表输入输出对象
/// </summary>
public class QualityDefectReasonDto
{
[Required(ErrorMessage = "主键ID不能为空")]
public long Id { get; set; }
public string ReasonCode { get; set; }
public string ReasonName { get; set; }
public string ReasonType { get; set; }
public string Description { get; set; }
public string CreateBy { get; set; }
public string CreateName { get; set; }
public DateTime? CreateTime { get; set; }
public string UpdateName { get; set; }
public string UpdateBy { get; set; }
public DateTime? UpdateTime { get; set; }
}
2025-11-22 11:37:53 +08:00
//下拉列表用
public class QualityDefectReasonPullDownDto()
{
// 对应前端的value建议用产线编码作为值
public string value { get; set; }
// 对应前端的label显示产线名称
public string label { get; set; }
}
Squashed commit of the following: commit ac4c7383285b88b2f326f6979f735496fa25d0b4 Author: quowingwang <guoqingwang.ruizhiao> Date: Mon Nov 10 19:32:04 2025 +0800 修改 commit be79fbda5de0846209dcab9d80300a920d470656 Author: quowingwang <guoqingwang.ruizhiao> Date: Mon Nov 10 19:23:50 2025 +0800 质量设定模糊查询 commit cd3b6582ad627b9f0bf82896b65e0a25971ecb97 Author: quowingwang <guoqingwang.ruizhiao> Date: Mon Nov 10 18:57:53 2025 +0800 质量设定 commit a2823cec8987b4f5c51029bf1456802df15e7d0d Author: quowingwang <guoqingwang.ruizhiao> Date: Mon Nov 10 16:28:05 2025 +0800 导出 commit 5a7bf882d0b65746e1041f252968b3c0ce91b8b2 Author: quowingwang <guoqingwang.ruizhiao> Date: Mon Nov 10 15:43:30 2025 +0800 导出 commit 2793eda822247b8480737cdb30b82a2dbb1a8881 Author: quowingwang <guoqingwang.ruizhiao> Date: Mon Nov 10 14:44:46 2025 +0800 条件查询 commit a5c8cb23b0058ca510c7b66fbf7e7be3f696c9eb Author: quowingwang <guoqingwang.ruizhiao> Date: Mon Nov 10 14:16:23 2025 +0800 查询工序详情 commit f1a8053c2fb65d37e41a9a16a10ee75aff99c00e Author: quowingwang <guoqingwang.ruizhiao> Date: Mon Nov 10 11:51:48 2025 +0800 导入 commit 4867fe688058817e14fc46bb88b8c6b20688dd19 Author: quowingwang <guoqingwang.ruizhiao> Date: Mon Nov 10 11:29:08 2025 +0800 删除修改 commit 82e5eef5f6aa12679810985890528fa6a6004584 Author: quowingwang <guoqingwang.ruizhiao> Date: Mon Nov 10 11:27:18 2025 +0800 批量删除修改 commit 58e8c088fd01b97a54c62f4027673cab446c8a11 Author: quowingwang <guoqingwang.ruizhiao> Date: Mon Nov 10 10:40:02 2025 +0800 修改 commit 61781194bd1310bc5187a0769ace449f7974bd35 Author: quowingwang <guoqingwang.ruizhiao> Date: Mon Nov 10 10:37:11 2025 +0800 存用户名称 commit 952a52d30241ec49f2a354138e5397ae92aaea03 Author: quowingwang <guoqingwang.ruizhiao> Date: Mon Nov 10 10:00:23 2025 +0800 工艺路线导入 commit d4f43ccb892be7efa7531eb7e712fb71185c12ad Author: quowingwang <guoqingwang.ruizhiao> Date: Mon Nov 10 08:48:53 2025 +0800 工艺路线 commit c7e4c77e4d61609b7eac06a47b42d37023341527 Author: quowingwang <guoqingwang.ruizhiao> Date: Fri Nov 7 09:24:24 2025 +0800 工艺管理
2025-11-11 08:35:41 +08:00
}