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.

24 lines
689 B
C#

2 months ago
using SlnMesnac.Model.domain;
using SlnMesnac.Repository.service.@base;
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
namespace SlnMesnac.Repository.service
{
public interface IT_RP_StationMaterialInventoryService: IBaseService<T_RP_StationMaterialInventory>
{
/// <summary>
/// <20><>ѯ<EFBFBD><D1AF><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>BOM
/// </summary>
/// <returns></returns>
List<T_RP_StationMaterialInventory> GetMaterialShip(int stationid);
T_RP_StationMaterialInventory GetBatchNoByMaterialTypeID(string material_type_id, int stationid);
Task<bool> UpdateAsync(T_RP_StationMaterialInventory record);
}
}