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
596 B
C#
30 lines
596 B
C#
using DS.Module.Core;
|
|
using FluentValidation;
|
|
|
|
namespace DS.WMS.Core.Code.Dtos;
|
|
|
|
/// <summary>
|
|
/// 包装类型Excel导入请求实体
|
|
/// </summary>
|
|
public class CodePackageExcelImportReq
|
|
{
|
|
|
|
/// <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; }
|
|
|
|
}
|
|
|