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
829 B
40 lines
829 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace QMAPP.Web.Models.Sys
|
|
{
|
|
/// <summary>
|
|
/// 相关零件类别
|
|
/// </summary>
|
|
public class UserReqPlaceModel
|
|
{
|
|
/// <summary>
|
|
/// 序号
|
|
/// </summary>
|
|
public int Seq { get; set; }
|
|
|
|
///<summary>
|
|
///零件类别主键
|
|
///</summary>
|
|
public string PLACEDISID { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///零件类别编号
|
|
///</summary>
|
|
public string PLACEDISNO { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///零件类别名称
|
|
///</summary>
|
|
public string DESCRIBE_SITE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 删除
|
|
/// </summary>
|
|
public string DeleteAction { get; set; }
|
|
}
|
|
}
|