2025-06-24 18:26:51 +08:00
|
|
|
|
using Microsoft.AspNetCore.Mvc.Razor;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Syc.Basic.Web.WMS.Dto
|
|
|
|
|
{
|
|
|
|
|
public class ProduceDto
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
public string Type { get; set; }
|
|
|
|
|
public string Spec { get; set; }
|
|
|
|
|
public double Length { get; set; }
|
|
|
|
|
public string Lot_No { get; set; }
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
public int? Qty { get; set; }
|
2025-07-01 14:20:07 +08:00
|
|
|
|
public string BoxSpec { get; set; }
|
2025-06-25 16:06:49 +08:00
|
|
|
|
public string Exp_Time { get; set; }
|
2025-06-24 18:26:51 +08:00
|
|
|
|
public int IfUse { get; set; }
|
|
|
|
|
public int IsDelete { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|