19 lines
460 B
C#
Raw Normal View History

2024-05-16 13:30:30 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2024-07-01 16:04:10 +08:00
using DOAN.Model.MES.upload;
using DOAN.Model;
2024-05-16 13:30:30 +08:00
2024-07-01 16:04:10 +08:00
namespace DOAN.Service.quality.upload
2024-05-16 13:30:30 +08:00
{
public interface IUploadServive
{
public PagedInfo<QcYidaExcel> SelectExcelList(string partnumber, string workstation, string paramter, PagerInfo pager);
public int GOcloud(List<QcYidaExcel> qcYidas,string CreatedBy);
}
}