22 lines
455 B
C#
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; }
|
|
}
|
|
}
|