21 lines
444 B
21 lines
444 B
6 months ago
|
using MESClassLibrary.EFModel;
|
||
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
|
||
|
namespace MESClassLibrary.Model
|
||
|
{
|
||
|
public class ZPPlanModel : tb_ZPPlan
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 工位名称
|
||
|
/// </summary>
|
||
|
public string StationNo { get; set; }
|
||
|
/// <summary>
|
||
|
/// 存货名称
|
||
|
/// </summary>
|
||
|
public string ProductName { get; set; }
|
||
|
}
|
||
|
}
|