smartScreen

This commit is contained in:
qianhao.xu
2024-12-19 19:44:47 +08:00
parent dd534102c0
commit 1e026edc8f
6 changed files with 261 additions and 3 deletions

View File

@@ -0,0 +1,16 @@
using DOAN.Model.MES.product;
using DOAN.Model.MES.SmartScreen.Product;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DOAN.Service.MES.SmartScreen.Product.IService
{
public interface IProductSmartScreenService : IBaseService<ProWorkorder>
{
DigitalTurntableModel DigitalTurntable();
}
}