31 lines
640 B
C#
31 lines
640 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace ZR.Model.Dto
|
|
{
|
|
/// <summary>
|
|
/// 质量后道外箱标签打印配置
|
|
/// </summary>
|
|
public class QcBackendBaseOutpackageQueryDto : PagerInfo
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// 质量后道外箱标签打印配置
|
|
/// </summary>
|
|
public class QcBackendBaseOutpackageDto
|
|
{
|
|
[Required(ErrorMessage = "主键不能为空")]
|
|
public int Id { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
public string FileUrl { get; set; }
|
|
|
|
public int? PackageNum { get; set; }
|
|
|
|
public string CheckStr { get; set; }
|
|
|
|
|
|
|
|
}
|
|
} |