syc_zhaoqianyan 66fc5b3b19 1.扫码枪实现
2.体重秤实现
3.打印机实现
2025-07-01 14:20:07 +08:00

34 lines
837 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 SilkDto
{
public int Id { get; set; }
//条码
public string Code { get; set; }
//名称
public string Name { get; set; }
//配方
public string Type { get; set; }
//净重
public double? Net_Weight { get; set; }
//长度
public double? Length { get; set; }
//包装时间
public DateTime? Date { get; set; }
//生产批号
public string Lot_No { get; set; }
public int Status { get; set; }
public string Status_Details { get; set; }
public int? BoxId { get; set; }
public int IsDelete { get; set; }
}
}