17 lines
428 B
C#
17 lines
428 B
C#
using DOAN.Model.MES.product;
|
|
using DOAN.Service.MES.bigScreen.IService;
|
|
using Infrastructure.Attribute;
|
|
|
|
namespace DOAN.Service.MES.bigScreen
|
|
{
|
|
|
|
/// <summary>
|
|
/// 生产大屏
|
|
/// </summary>
|
|
[AppService(ServiceType = typeof(IProduct2BigScreenService), ServiceLifetime = LifeTime.Transient)]
|
|
public class Product2BigScreenService : BaseService<ProWorkorder>, IProduct2BigScreenService
|
|
{}
|
|
|
|
|
|
}
|