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.
|
|
|
using Coldairarrow.Entity.DTO;
|
|
|
|
using Coldairarrow.Entity.HuiYan;
|
|
|
|
using Coldairarrow.Util;
|
|
|
|
using System;
|
|
|
|
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);
|
|
|
|
|
|
|
|
PageResult<TeamitemDto> GetItems(PageInput<ConditionDTO> input, string keyWord);
|
|
|
|
|
|
|
|
AjaxResult AddItem(TeamitemDto model);
|
|
|
|
|
|
|
|
AjaxResult RemoveItem(string goodsId);
|
|
|
|
AjaxResult SetItem(TeamitemDto model);
|
|
|
|
AjaxResult SetState(string id, int state);
|
|
|
|
AjaxResult GetTeamCount();
|
|
|
|
|
|
|
|
Task<PriceTaskInfo> GetMyTaskInfo(int type, DateTime start, DateTime end);
|
|
|
|
}
|
|
|
|
}
|