啊鑫
2024-07-09 51c354275e11dde7f65279a5043f332a379fbe8b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
using MES.Service.Modes;
 
namespace MES.Service.Dto.service;
 
public class RKJDto
{
    public string? userNo { get; set; }
 
    //主表id
    public int? gid { get; set; }
 
    //子表id
    public int? pid { get; set; }
 
    //孙表id
    public int? id { get; set; }
 
    //备注
    public string? Remarks { get; set; }
 
    //==========================================
    //巡检主子表需要的数据
    public QsItemOqcReq? from { get; set; }
 
    public List<QsItemOqcItem>? items { get; set; }
 
    //==========================================
    //巡检子孙表需要的数据
 
    public QsItemOqcItem? ItemXj01 { get; set; }
 
    public List<QsItemOqcItemDetail>? ItemXj02s { get; set; }
}