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.
24 lines
582 B
C#
24 lines
582 B
C#
using Admin.Core.Model;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Admin.Core.IService
|
|
{
|
|
/// <summary>
|
|
/// IBaseBomInfoServices
|
|
/// </summary>
|
|
public interface ITestedCodeMESServices : IBaseServices<TestedCode_MES>
|
|
{
|
|
|
|
/// <summary>
|
|
/// 获取系统班组时间
|
|
/// </summary>
|
|
public List<TestedCode_MES> QueryTemperatureHistory(DateTime startTime);
|
|
|
|
/// <summary>
|
|
/// 跟新同步标识
|
|
/// </summary>
|
|
public int UpateTemperatureHistoryFlag(List<TestedCode_MES> list);
|
|
|
|
}
|
|
} |