锐腾搅拌上料功能
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.

45 lines
951 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_order
{
/// <summary>
/// 生产工单主键ID
/// </summary>
public string MoId { get; set; }
/// <summary>
/// 生产工单号
/// </summary>
public string MoCode { get; set; }
/// <summary>
/// 用户编号
/// </summary>
public string UserCode { get; set; }
/// <summary>
/// 仓库编号
/// </summary>
public string cWhCode { get; set; }
/// <summary>
/// 部门
/// </summary>
public string MDeptCode { get; set; }
/// <summary>
/// 是否退货
/// </summary>
public string IsReturn { get; set; }
public List<mom_orderdetail> list { get; set; }
}
}