17 lines
371 B
C#
17 lines
371 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 CheckSilkDto:IdsInput
|
|
{
|
|
public int Pid { get; set; }
|
|
public string Date { get; set; }
|
|
public string ExpTime { get; set; }
|
|
public string Color { get; set; }
|
|
}
|
|
}
|