20 lines
773 B
C#
20 lines
773 B
C#
using System;
|
|
using ZR.Model.mes.md;
|
|
using ZR.Model.mes.md.DTO;
|
|
|
|
namespace ZR.Service.mes.md.IService
|
|
{
|
|
public interface IMdProductDefineService
|
|
{
|
|
public int deleteProductDefine(int[] ids);
|
|
public MdProductDefineDTO GetList(string name, string code, int pageNum, int pageSize);
|
|
public List<MdProductDefine> GetList(DateTime starttime, DateTime endtime, string productCode, string productName);
|
|
public MdProductDefine GetProductDefinebyPK(int measure);
|
|
List<MdUnit> GetProductDefineList(string name);
|
|
List<MdUnit> GetProductDefineList();
|
|
List<MdWorkline> GetWorklineList();
|
|
public int InsertProductDefine(MdProductDefine jo);
|
|
public int UpdateProductDefine(MdProductDefine paramss);
|
|
}
|
|
}
|