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.

87 lines
2.1 KiB
C#

2 months ago
using System;
using System.Collections.Generic;
using System.Text;
#region << 版 本 注 释 >>
/*--------------------------------------------------------------------
* (c) 2024 WenJY
* CLR4.0.30319.42000
* T14-GEN3-7895
* SlnMesnac.RfidUpload.Model.apiParam
* 43029bd1-d802-45dd-b3a8-c348c9a6f104
*
* WenJY
*
* 2024-07-02 15:59:48
* V1.0.0
*
*
*--------------------------------------------------------------------
*
*
*
*
* V1.0.0
*--------------------------------------------------------------------*/
#endregion << 版 本 注 释 >>
namespace SlnMesnac.RfidUpload.Model.apiParam
{
2 months ago
public class OutStoreParam
{
/// <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 rqzlmc { get; set; }
/// <summary>
2 months ago
/// 总包id
/// </summary>
public string zbid { get; set; }
/// <summary>
/// 寄达局名称
/// </summary>
public string destinationOrgName { get; set; }
/// <summary>
/// 寄达局编号
/// </summary>
public string destinationOrgCode { get; set; }
/// <summary>
/// 容器种类
/// </summary>
public string rqzl { get; set; }
/// <summary>
/// 容器型号
/// </summary>
public string rqxh { get; set; }
/// <summary>
/// 容器型号名称
/// </summary>
public string rqxhmc { get; set; }
}
2 months ago
}