You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ProductionSystem/ProductionSystem_Model/ViewModel/Request/Para/QueryParaColVM.cs

21 lines
497 B
C#

12 months ago
namespace ProductionSystem_Model.ViewModel.Request.Para
{
public class QueryParaColVM : BaseQuery
{
/// <summary>
/// 产品型号
/// </summary>
public string ProductType { get; set; }
/// <summary>
/// 参数类别
/// </summary>
public string ParaCategory { get; set; }
/// <summary>
/// 参数名称
/// </summary>
public string ParaName { get; set; }
}
}