using iWare.Wms.Core.Util.LowCode.Dto;
|
using Microsoft.EntityFrameworkCore;
|
using System;
|
using System.ComponentModel.DataAnnotations;
|
|
namespace iWare.Wms.Application
|
{
|
/// <summary>
|
/// 工件出库信息输出参数
|
/// </summary>
|
public class WorkPieceUnLineOutput
|
{
|
/// <summary>
|
/// 工件号
|
/// </summary>
|
public string WorkPieceID { get; set; }
|
|
/// <summary>
|
/// OP80打码
|
/// </summary>
|
public string OP80NewCode { get; set; }
|
|
/// <summary>
|
/// 小车码
|
/// </summary>
|
[Comment("小车码")]
|
[MaxLength(32)]
|
public string CarNo { get; set; }
|
|
|
/// <summary>
|
/// Id主键
|
/// </summary>
|
public long Id { get; set; }
|
|
}
|
}
|