You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
824 B
40 lines
824 B
4 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Web;
|
||
|
|
||
|
namespace QMAPP.Web.Models.Sys
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 相关零件类别
|
||
|
/// </summary>
|
||
|
public class UserMatSortModel
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 序号
|
||
|
/// </summary>
|
||
|
public int Seq { get; set; }
|
||
|
|
||
|
///<summary>
|
||
|
///零件类别主键
|
||
|
///</summary>
|
||
|
public string MATSORTID { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///零件类别编号
|
||
|
///</summary>
|
||
|
public string MATSORTNO { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///零件类别名称
|
||
|
///</summary>
|
||
|
public string MATSORTNAME { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 删除
|
||
|
/// </summary>
|
||
|
public string DeleteAction { get; set; }
|
||
|
}
|
||
|
}
|