Files
wcs/WCS.Model/ApiModel/MatBaseInfo/GetMatInfoRequest.cs
hehaibing-1996 432a96198f fature
2024-05-15 18:59:24 +08:00

22 lines
455 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace WCS.Model.ApiModel.MatBaseInfo
{
public class GetMatInfoRequest : PageQueryRequestBase
{
public string MatCode { get; set; }
public string MatName { get; set; }
public string MatSpec { get; set; }
public string MatSN { get; set; }
public string MatBatch { get; set; }
public bool? IsPrinted { get; set; }
}
}