21 lines
544 B
C#
Raw Normal View History

2025-06-23 15:41:15 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Syc.Basic.Web.WMS.Dto
{
public class BoxInput: PagedInput
2025-06-23 15:41:15 +08:00
{
public string Lot_No { get; set; }
2025-11-11 09:20:17 +08:00
public string Type { get; set; }
public string Spec { get; set; }
2025-11-11 09:20:17 +08:00
public string Chang { get; set; }
public int Qty { get; set; }
public string Start_Time { get; set; }
public string End_Time { get; set; }
public string Color { get; set; }
2025-06-23 15:41:15 +08:00
}
}