You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using Admin.Core.IService;
|
|
|
|
|
using Admin.Core.Model;
|
|
|
|
|
using Admin.Core.Model.Model_New;
|
|
|
|
|
using Admin.Core.Model.ViewModels;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Admin.Core.IService
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 成品下线
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface IOffLineInfoServices : IBaseServices<OffLineInfo>
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 图表统计,根据登录班组
|
|
|
|
|
/// -- 如果是白班,查询当天白班数据
|
|
|
|
|
/// -- 如果是夜班,并且当前时间大于12:00,统计当天12:00以后的夜班数据
|
|
|
|
|
/// -- 否则为第二天凌晨,统计前一天12:00以后的夜班数据
|
|
|
|
|
/// 传入参数:productLine产线,teamName班组名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
public List<OffLineInfo> getTeamOffData(string productLine, string teamName);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|