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.
30 lines
639 B
C#
30 lines
639 B
C#
using DS.Module.Core;
|
|
|
|
namespace DS.WMS.Core.Code.Dtos;
|
|
|
|
/// <summary>
|
|
/// 包装类型信息选择返回
|
|
/// </summary>
|
|
public class CodePackageSelectRes
|
|
{
|
|
/// <summary>
|
|
/// 主键Id
|
|
/// </summary>
|
|
public long Id { get; set; }
|
|
/// <summary>
|
|
/// 包装类型
|
|
/// </summary>
|
|
public string PackageName { get; set; }
|
|
/// <summary>
|
|
/// 中文说明
|
|
/// </summary>
|
|
public string CnExplain { get; set; }
|
|
/// <summary>
|
|
/// AFR代码
|
|
/// </summary>
|
|
public string AfrCode { get; set; }
|
|
/// <summary>
|
|
/// EDI代码
|
|
/// </summary>
|
|
public string EdiCode { get; set; }
|
|
} |