shgx_tz_mom/ZR.Service/mes/andon/IService/IAndonWorkTimeService.cs

26 lines
594 B
C#
Raw Normal View History

2026-03-03 19:46:07 +08:00
using System;
using ZR.Model;
using System.Collections.Generic;
using ZR.Model.MES.andon;
using ZR.Model.MES.andon.Dto;
using Infrastructure.Model;
namespace ZR.Service.mes.andon.Iservice
{
/// <summary>
/// 安灯区域工作时间表service接口
/// </summary>
public interface IAndonWorkTimeService : IBaseService<AndonWorkTime>
{
PagedInfo<AndonWorkTimeDto> GetList(AndonWorkTimeQueryDto parm);
AndonWorkTime GetInfo(int Id);
AndonWorkTime AddAndonWorkTime(AndonWorkTime parm);
int UpdateAndonWorkTime(AndonWorkTime parm);
}
}