2025-06-25 16:07:36 +08:00

22 lines
573 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 Type { get; set; }
public string Spec { 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 IsDelete { get; set; }
}
}