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.
28 lines
831 B
C#
28 lines
831 B
C#
using SlnMesnac.Model.domain;
|
|
using SlnMesnac.Repository.service.@base;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace SlnMesnac.Repository.service
|
|
{
|
|
public interface ProdPlanExecuteUserService : IBaseService<ProdPlanExecuteUser>
|
|
{
|
|
/// <summary>
|
|
/// 根据计划号和批次号删除所有执行信息
|
|
/// </summary>
|
|
/// <param name="planCode"></param>
|
|
/// <param name="batch"></param>
|
|
/// <returns></returns>
|
|
bool DeleteByPlanCodeAndTheBatchNumber(string planCode, int batch);
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="staffId"></param>
|
|
/// <param name="dateTime"></param>
|
|
/// <returns></returns>
|
|
int SetExecuterOffWorkTime(string staffId, string dateTime);
|
|
}
|
|
}
|