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.

128 lines
3.4 KiB
C#

1 year ago
using FreeSql.DataAnnotations;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Mesnac.Action.ChemicalWeighing
{
///<summary>
///反应釜计划
///</summary>
public class Hw_WareHouseSubView
{
/// <summary>
/// Desc:
/// Default:
/// Nullable:False
/// </summary>
[Column(IsPrimary = true, IsIdentity = true)]
public string No { get; set; }
/// <summary>
/// Desc:
/// Default:
/// Nullable:False
/// </summary>
public string 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 BinId { 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 string MaterialType { get; set; }
/// <summary>
/// Desc:重量
/// Default:
/// Nullable:True
/// </summary>
public string SetWeight { get; set; }
/// <summary>
/// Desc:误差值
/// Default:
/// Nullable:True
/// </summary>
public string SetError { get; set; }
/// <summary>
/// Desc:工装区分,相同值代表在一个料桶中
/// Default:
/// Nullable:True
/// </summary>
public string Difference { get; set; }
/// <summary>
/// Desc:是否有固含 1为有0没有
/// Default:0
/// Nullable:True
/// </summary>
public string Fixed { get; set; }
/// <summary>
/// Desc:固含率
/// Default:
/// Nullable:True
/// </summary>
public string FixedRatio { get; set; }
/// <summary>
/// Desc:配方名
/// Default:
/// Nullable:True
/// </summary>
public string Recipe { get; set; }
/// <summary>
/// 泵二维码
/// </summary>
public string PumpCode { get; set; }
/// <summary>
/// 地磅
/// </summary>
public string Weighbridge { get; set; }
/// <summary>
/// 备注
/// </summary>
public string Remark { get; set; }
/// <summary>
/// 计划状态 8已完成5未下发
/// </summary>
public int Plan_State { get; set; }
10 months ago
/// <summary>
/// 皮重
/// </summary>
public string Tare { get; set; }
1 year ago
}
}