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.
102 lines
2.6 KiB
C#
102 lines
2.6 KiB
C#
using SqlSugar;
|
|
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 HwWareHouseSubView
|
|
{
|
|
/// <summary>
|
|
/// Desc:主键
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
|
|
public int ID { get; set; }
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public int MainId { get; set; }
|
|
/// <summary>
|
|
/// Desc:批次
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string PId { get; set; }
|
|
/// <summary>
|
|
/// Desc:产品名称
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string ProductName { get; set; }
|
|
/// <summary>
|
|
/// Desc:物料编码
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string MaterialID { get; set; }
|
|
/// <summary>
|
|
/// Desc:二维码
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string Material_Code { get; set; }
|
|
/// <summary>
|
|
/// Desc:物料名称
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string MaterialName { get; set; }
|
|
/// <summary>
|
|
/// Desc:所属料仓
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public int BinId { get; set; }
|
|
/// <summary>
|
|
/// Desc:物料类型:整包、尾料、溶剂
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string MaterialType { get; set; }
|
|
/// <summary>
|
|
/// Desc:重量
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public decimal SetWeight { get; set; }
|
|
/// <summary>
|
|
/// Desc:误差值
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public decimal SetError { get; set; }
|
|
/// <summary>
|
|
/// Desc:工装区分,相同值代表在一个料桶中
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string Difference { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:配方名
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string Recipe { get; set; }
|
|
/// <summary>
|
|
/// 皮重
|
|
/// </summary>
|
|
public decimal Tare { get; set; }
|
|
|
|
}
|
|
}
|