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.
51 lines
1.5 KiB
C#
51 lines
1.5 KiB
C#
using Admin.Core.IService;
|
|
using Admin.Core.Model;
|
|
using Admin.Core.Model.ViewModels;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Admin.Core.IService
|
|
{
|
|
/// <summary>
|
|
/// IProductPlanInfoServices
|
|
/// </summary>
|
|
public interface IProductPlanInfoServices :IBaseServices<ProductPlanInfo>
|
|
{
|
|
/// <summary>
|
|
/// 钣金获取计划
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
Task<List<PlanMaintenanceView>> QueryPlanInfo(string station);
|
|
|
|
#region 货道出入库
|
|
|
|
/// <summary>
|
|
/// 通过产线工位获取生产计划
|
|
/// </summary>
|
|
/// <param name="productLineCode"></param>
|
|
/// <returns></returns>
|
|
Task<List<ProductPlanInfo>> GetProductPlanInfosByProductLineCode(string productLineCode);
|
|
|
|
/// <summary>
|
|
/// 通过计划编号获取计划信息
|
|
/// </summary>
|
|
/// <param name="planCode"></param>
|
|
/// <returns></returns>
|
|
Task<ProductPlanInfo> GetProductPlanByPlanCode(string planCode);
|
|
|
|
/// <summary>
|
|
/// 添加生产计划
|
|
/// </summary>
|
|
/// <param name="productPlanInfo"></param>
|
|
/// <returns></returns>
|
|
Task<bool> InsertProductPlanInfo(ProductPlanInfo productPlanInfo);
|
|
|
|
/// <summary>
|
|
/// 修改生产计划
|
|
/// </summary>
|
|
/// <param name="productPlanInfo"></param>
|
|
/// <returns></returns>
|
|
Task<bool> UpdateProductPlanInfo(ProductPlanInfo productPlanInfo);
|
|
#endregion
|
|
}
|
|
} |