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.
|
|
|
|
using FreeSql.DataAnnotations;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Mesnac.Action.ChemicalWeighing.Entity
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 反应釜子表
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class Hw_WareHouse_Sub
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 主键Id
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Column(IsIdentity =true,IsPrimary =true)]
|
|
|
|
|
public int ID { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 父类主键ID
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int MainId { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 计划编码
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string PId { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 物料ID
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string MaterialID { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 物料名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string MaterialName { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 与物料ID
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Material_Code { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 设置重量
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string SetWeight { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|