17 lines
371 B
C#
Raw Normal View History

2026-01-04 08:44:48 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Syc.Basic.Web.WMS.Dto
{
public class CheckSilkDto:IdsInput
{
public int Pid { get; set; }
public string Date { get; set; }
public string ExpTime { get; set; }
public string Color { get; set; }
}
}