小程序

This commit is contained in:
2024-09-20 08:49:45 +08:00
parent 5f6e21c6ff
commit 1aeb40d1df
15 changed files with 1413 additions and 119 deletions
@@ -0,0 +1,27 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model.CQMS
{
public class InspectionManagementDetail
{
public string InspectionDetailId { get; set; }
public string InspectionId { get; set; }
public string UnitWorkId { get; set; }
public string UnitWorkName { get; set; }
public string Branch { get; set; }
public string BranchName { get; set; }
public string ControlPointType { get; set; }
public string ControlPointTypeName { get; set; }
public string ControlPointTypeLevel { get; set; }
public string CreateDate { get; set; }
public InspectionManagement inspectionManagement { get; set; }
}
}