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 string? RbillNo { get; set; }
|
|
// 送检数量
|
public decimal? quantity { get; set; }
|
|
// 不良原因
|
public string? BLYY { get; set; }
|
|
// 评审状态
|
public string? PSZT { get; set; }
|
|
// 所属车间
|
public string? SSCJ { get; set; }
|
|
// 检验单号
|
public string? releaseNo { get; set; }
|
|
//==========================================
|
//巡检主子表需要的数据
|
public QsItemOqcReq? from { get; set; }
|
|
public List<QsItemOqcItem>? items { get; set; }
|
|
//==========================================
|
//巡检子孙表需要的数据
|
|
public QsItemOqcItem? ItemXj01 { get; set; }
|
|
public List<QsItemOqcItemDetail>? ItemXj02s { get; set; }
|
}
|