25 lines
661 B
C#
25 lines
661 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 ProduceSelectDto
|
|
{
|
|
public int Id { get; set; }
|
|
public string Label { get; set; }
|
|
public int IfUse { get; set; }
|
|
public string Type { get; set; }
|
|
public string Spec { get; set; }
|
|
public string Length { get; set; }
|
|
public string Lot_No { get; set; }
|
|
public int? Qty { get; set; }
|
|
public string Date { get; set; }
|
|
public string Exp_Time { get; set; }
|
|
|
|
public int IsDelete { get; set; }
|
|
}
|
|
}
|