京东慧眼
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.

18 lines
558 B

using Coldairarrow.Entity.HuiYan;
using Coldairarrow.Util;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace Coldairarrow.Business.HuiYan
{
public interface IpricetasklogBusiness
{
Task<PageResult<pricetasklog>> GetDataListAsync(PageInput<ConditionDTO> input);
Task<pricetasklog> GetTheDataAsync(string id);
Task AddDataAsync(pricetasklog data);
Task UpdateDataAsync(pricetasklog data);
Task DeleteDataAsync(List<string> ids);
AjaxResult AddTask(string teamItemId);
}
}