ChengDa_English/SGGL/Model/CQMS/InspectionManagementDetail.cs

22 lines
616 B
C#
Raw Normal View History

2022-03-15 17:36:38 +08:00
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 ControlPointType { get; set; }
public string CreateDate { get; set; }
public InspectionManagement inspectionManagement { get; set; }
}
}