You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.3 KiB
C#
54 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Admin.Core.Model.ViewModels
|
|
{
|
|
/// <summary>
|
|
/// 反应釜
|
|
/// </summary>
|
|
public class BarrelView
|
|
{
|
|
/// <summary>
|
|
/// 计划ID
|
|
/// </summary>
|
|
public string PlanId { get; set; }
|
|
/// <summary>
|
|
/// 桶编码
|
|
/// </summary>
|
|
public string BarrelID { get; set; }
|
|
/// <summary>
|
|
/// Desc:名称
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string BarrelName { get; set; }
|
|
/// <summary>
|
|
/// Desc:条码Code
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string BarCode { get; set; }
|
|
/// <summary>
|
|
/// Desc:物料ID
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string MaterialID { get; set; }
|
|
/// <summary>
|
|
/// Desc:物料名称
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string MaterialName { get; set; }
|
|
/// <summary>
|
|
/// Desc:绑定桶的物料重量
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public decimal? Weight { get; set; }
|
|
}
|
|
}
|