using System;
using System.Collections.Generic;
using System.Text;
namespace wms.dto.response.sx
{
public class TorsChkResponse
{
///
/// 返回状态码
///
public int ResCode { get; set; } = 200;
///
/// 返回描述信息
///
public string ResMsg { get; set; } = "成功";
///
/// 高低卷 1:高卷;2.低卷
///
public int GoodsType { get; set; }
///
/// 直径
///
public decimal Diameter { get; set; }
///
/// 正反面
///
public string Face { get; set; }
///
/// 是否检测 1:屏蔽(不需要检测);2:需要检测
///
public int Isdetection { get; set; }
public string Memo1 { get; set; }
public string Memo2 { get; set; }
public string Memo3 { get; set; }
}
public class TorschMesResponse
{
public string code { get; set; }
public bool success { get; set; }
public string message { get; set; }
public dataitem data { get; set; }
}
public class dataitem
{
public string GradeCode { get; set; }
}
}