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.
27 lines
633 B
C#
27 lines
633 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Mesnac.Action.ChemicalWeighing.Technical.PmtRecipe.entity
|
|
{
|
|
public class Base_MaterialInfo
|
|
{
|
|
/// <summary>
|
|
/// 修改时原物料编号设为uid作为update的where条件
|
|
/// </summary>
|
|
public string uid { get; set; }
|
|
|
|
public string materialId { get; set; }
|
|
|
|
public string materialName { get; set; }
|
|
|
|
public decimal materialWeight { get; set; }
|
|
|
|
public int putTime { get; set; }
|
|
|
|
public string remark { get; set; }
|
|
}
|
|
}
|