锐腾搅拌上料功能
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
918 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ICSSoft.Entity.mom_order
{
public class mom_orderdetail
{
/// <summary>
/// 生产订单号表体主键ID
/// </summary>
public string MoDId { get; set; }
/// <summary>
/// 生产订单号行号
/// </summary>
public string SortSeq { get; set; }
/// <summary>
/// 物料编号
/// </summary>
public string cInvCode { get; set; }
/// <summary>
/// 主计量数量
/// </summary>
public decimal iQuantity { get; set; }
/// <summary>
/// 辅计量数量
/// </summary>
public decimal iNum { get; set; }
/// <summary>
/// 批次
/// </summary>
public string cBatch { get; set; }
}
}