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.
42 lines
924 B
42 lines
924 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MESClassLibrary.Model
|
|
{
|
|
public class OperationModel
|
|
{
|
|
/// <summary>
|
|
/// ID
|
|
/// </summary>
|
|
public string OperatorID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 工位ID
|
|
/// </summary>
|
|
public string StationID { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 操作员编号
|
|
/// </summary>
|
|
public string OperatorNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 操作员姓名
|
|
/// </summary>
|
|
public string OperatorName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 操作员密码
|
|
/// </summary>
|
|
public string OperatorPsw { get; set; }
|
|
|
|
/// <summary>
|
|
/// 描述
|
|
/// </summary>
|
|
public string Des { get; set; }
|
|
}
|
|
}
|
|
|