using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Admin.Core.Model.ViewModels
{
///
/// 返回溶剂 泵和拉缸信息
///
public class PumpAndCylinderView
{
///
/// 计划ID
///
public string Plan_Id { get; set; }
///
/// 拉缸名称
///
public string CylinderName { get; set; }
///
/// 拉缸条码
///
public string CylinderBarCode { get; set; }
///
/// 泵名称
///
public string PumpName { get; set; }
///
/// 泵Code
///
public string PumpBarCode { get; set; }
}
}