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.
16 lines
520 B
16 lines
520 B
using Coldairarrow.Entity.HuiYan;
|
|
using Coldairarrow.Util;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Coldairarrow.Business.HuiYan
|
|
{
|
|
public interface IalbbitemlabelsBusiness
|
|
{
|
|
Task<PageResult<albbitemlabels>> GetDataListAsync(PageInput<ConditionDTO> input);
|
|
Task<albbitemlabels> GetTheDataAsync(string id);
|
|
Task AddDataAsync(albbitemlabels data);
|
|
Task UpdateDataAsync(albbitemlabels data);
|
|
Task DeleteDataAsync(List<string> ids);
|
|
}
|
|
}
|