Files
wcs/WCS.Model/ApiModel/MatBaseInfo/GetMatBaseInfoRequest.cs
hehaibing-1996 e89b64ea3a !提交代码
2024-04-15 18:43:28 +08:00

18 lines
377 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace WCS.Model.ApiModel.MatBaseInfo
{
public class GetMatBaseInfoRequest : PageQueryRequestBase
{
public string MatCode { get; set; }
public string MatName { get; set; }
public string MatSpec { get; set; }
public bool? IsEnable { get; set; } = null;
}
}