24 lines
666 B
C#
24 lines
666 B
C#
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
|
|
{
|
|
public string Code { get; set; }
|
|
public string Lot_No { get; set; }
|
|
public string Type { get; set; }
|
|
public string Spec { get; set; }
|
|
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; }
|
|
public string Mark { get; set; }
|
|
public int Status { get; set; }
|
|
}
|
|
}
|