You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
namespace SlnMesnac.RfidUpload.Model
{
/// <summary>
/// 容器入库
/// </summary>
public class ContainerInbound
{
/// <summary>
/// 入参1, 请求报文到消息头
/// </summary>
public string messageHeader { get ; set ; }
/// <summary>
/// 入参2, 将下列参数封装到batchOpenQuery
/// </summary>
public string batchOpenQuery { get ; set ; }
/// <summary>
/// 机构代码
/// </summary>
public string opOrgCode { get ; set ; }
/// <summary>
/// 登录人代码
/// </summary>
public string userCode { get ; set ; }
/// <summary>
/// 登录人名称
/// </summary>
public string userName { get ; set ; }
/// <summary>
/// 省份代码
/// </summary>
public string province { get ; set ; }
/// <summary>
/// 容器条码
/// </summary>
public string rqtm { get ; set ; }
}
}