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