0
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MyCode.Project.Domain.Message.Response.LxmZHMDReport
|
||||
{
|
||||
/// <summary>
|
||||
/// 生产订单大屏数据
|
||||
/// </summary>
|
||||
public class PrdMoOrderEntryResp
|
||||
{
|
||||
/// <summary>
|
||||
/// 生产订单分录行号
|
||||
/// </summary>
|
||||
public int Seq { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 物料名称
|
||||
/// </summary>
|
||||
public string MaterialName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 生产车间
|
||||
/// </summary>
|
||||
public string DeptName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 数量
|
||||
/// </summary>
|
||||
public decimal Qty { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 入库总、数量
|
||||
/// </summary>
|
||||
public decimal InStockQty { get; set; }
|
||||
/// <summary>
|
||||
/// 业务状态
|
||||
/// </summary>
|
||||
public string MoStatus { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -68,6 +68,7 @@
|
||||
<Compile Include="Message\Response\Common\IdName.cs" />
|
||||
<Compile Include="Message\Response\Common\ItemResult.cs" />
|
||||
<Compile Include="Message\Response\Common\ListHeadFieldData.cs" />
|
||||
<Compile Include="Message\Response\LxmZHMDReport\PrdMoOrderEntryResp.cs" />
|
||||
<Compile Include="Message\Response\LxmZHMDReport\PrdMoOrderResp.cs" />
|
||||
<Compile Include="Message\Response\LxmZHMDReport\ReportCalRateResp.cs" />
|
||||
<Compile Include="Message\Response\LxmZHMDReport\SalOrderResp.cs" />
|
||||
|
||||
@@ -1,14 +1,15 @@
|
||||
using System;
|
||||
using MyCode.Project.Domain;
|
||||
using MyCode.Project.Domain.Message;
|
||||
using MyCode.Project.Domain.Message.Act.Common;
|
||||
using MyCode.Project.Domain.Message.Response.LxmZHMDReport;
|
||||
using MyCode.Project.Domain.Model;
|
||||
using MyCode.Project.Infrastructure;
|
||||
using MyCode.Project.Infrastructure.Common;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using MyCode.Project.Infrastructure;
|
||||
using MyCode.Project.Domain;
|
||||
using MyCode.Project.Domain.Model;
|
||||
using MyCode.Project.Infrastructure.Common;
|
||||
using MyCode.Project.Domain.Message;
|
||||
using MyCode.Project.Domain.Message.Response.LxmZHMDReport;
|
||||
|
||||
namespace MyCode.Project.Domain.Repositories
|
||||
{
|
||||
@@ -23,5 +24,12 @@ namespace MyCode.Project.Domain.Repositories
|
||||
/// <returns></returns>
|
||||
PageResult<PrdMoOrderResp> GetPrdMoPageList(PagedSearch search);
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 获取生产订单分录信息
|
||||
/// </summary>
|
||||
/// <param name="search"></param>
|
||||
/// <returns></returns>
|
||||
PageResult<PrdMoOrderEntryResp> GetPrdMoEntryPageList(PagedSearch<IdAct> search);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user