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.
30 lines
712 B
C#
30 lines
712 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using djy.Paas.Model;
|
|
using Ys.Core.Common;
|
|
namespace djy.Paas.IService
|
|
{
|
|
/// <summary>
|
|
///任务台
|
|
/// </summary>
|
|
public interface IWorkbenchService:IsBase<tb_WorkbenchList, tb_WorkbenchList>
|
|
{
|
|
|
|
/// <summary>
|
|
/// 修改状态
|
|
/// </summary>
|
|
/// <param name="workGid"></param>
|
|
/// <returns></returns>
|
|
public ReturnResult<int> UpStatus(tb_WorkbenchList Dto);
|
|
|
|
/// <summary>
|
|
/// 分类统计汇总
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public ReturnResult<object> GroupTotal();
|
|
}
|
|
}
|