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.

131 lines
3.4 KiB
C#

11 months ago
using System;
10 months ago
using System.ComponentModel.DataAnnotations.Schema;
11 months ago
using System.Linq;
using System.Text;
using SqlSugar;
namespace Admin.Core.Model
{
///<summary>
///投料釜相关物料
///</summary>
[SugarTable("Hw_WareHouse_Sub", "cwss_xl")]
10 months ago
///<summary>
///反应釜计划
///</summary>
11 months ago
public class Hw_WareHouse_Sub
{
/// <summary>
/// Desc:主键
/// Default:
/// Nullable:False
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int ID { get; set; }
/// <summary>
10 months ago
/// Desc:
11 months ago
/// Default:
/// Nullable:False
/// </summary>
public int MainId { get; set; }
/// <summary>
10 months ago
/// Desc:批次
/// Default:
/// Nullable:True
11 months ago
/// </summary>
public string PId { get; set; }
/// <summary>
10 months ago
/// Desc:产品名称
/// Default:
/// Nullable:True
/// </summary>
public string ProductName { get; set; }
/// <summary>
/// Desc:物料编码
11 months ago
/// Default:
/// Nullable:True
/// </summary>
public string MaterialID { get; set; }
/// <summary>
10 months ago
/// Desc:二维码
/// Default:
/// Nullable:True
/// </summary>
public string Material_Code { get; set; }
/// <summary>
11 months ago
/// Desc:物料名称
/// Default:
/// Nullable:True
/// </summary>
public string MaterialName { get; set; }
/// <summary>
10 months ago
/// Desc:所属料仓
11 months ago
/// Default:
/// Nullable:True
/// </summary>
10 months ago
public int BinId { get; set; }
11 months ago
/// <summary>
10 months ago
/// Desc:物料类型:整包、尾料、溶剂
/// Default:
/// Nullable:True
/// </summary>
public string MaterialType { get; set; }
/// <summary>
/// Desc:重量
11 months ago
/// Default:
/// Nullable:True
/// </summary>
public decimal SetWeight { get; set; }
/// <summary>
10 months ago
/// Desc:误差值
/// Default:
/// Nullable:True
11 months ago
/// </summary>
public decimal SetError { get; set; }
/// <summary>
10 months ago
/// Desc:工装区分,相同值代表在一个料桶中
/// Default:
/// Nullable:True
/// </summary>
public string Difference { get; set; }
/// <summary>
/// Desc:是否有固含 1为有0没有
/// Default:0
/// Nullable:True
/// </summary>
public bool Fixed { get; set; }
/// <summary>
/// Desc:固含率
/// Default:
/// Nullable:True
/// </summary>
public decimal FixedRatio { get; set; }
/// <summary>
/// Desc:配方名
/// Default:
/// Nullable:True
/// </summary>
public string Recipe { get; set; }
/// <summary>
/// 备注
/// </summary>
public string Remark { get; set; }
/// <summary>
/// Desc:
11 months ago
/// Default:
/// Nullable:True
/// </summary>
public DateTime? CreateTime { get; set; }
10 months ago
/// <summary>
/// 地磅
/// </summary>
public string Weighbridge { get; set; }
/// <summary>
/// 泵条码
/// </summary>
public string PumpCode { get; set; }
11 months ago
}
}