You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
574 B
19 lines
574 B
4 years ago
|
using Coldairarrow.Entity.DTO;
|
||
|
using Coldairarrow.Entity.HuiYan;
|
||
|
using Coldairarrow.Util;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Threading.Tasks;
|
||
|
|
||
|
namespace Coldairarrow.Business.HuiYan
|
||
|
{
|
||
|
public interface IteamitemsBusiness
|
||
|
{
|
||
|
Task<PageResult<teamitems>> GetDataListAsync(PageInput<ConditionDTO> input);
|
||
|
Task<teamitems> GetTheDataAsync(string id);
|
||
|
Task AddDataAsync(teamitems data);
|
||
|
Task UpdateDataAsync(teamitems data);
|
||
|
Task DeleteDataAsync(List<string> ids);
|
||
|
|
||
|
AjaxResult AddItem(TeamitemDto model);
|
||
|
}
|
||
|
}
|