18 lines
377 B
C#
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;
|
|
}
|
|
}
|