dev798
parent
6823f81809
commit
ba0b2bb8fb
|
@ -9,7 +9,9 @@ import com.muyu.common.core.utils.poi.ExcelUtil;
|
|||
import com.muyu.common.core.web.domain.AjaxResult;
|
||||
import com.muyu.product.service.CharactersService;
|
||||
import com.nuyu.product.domain.MallProductReviewInfo;
|
||||
import com.nuyu.product.domain.MallProductTypeInfo;
|
||||
import com.nuyu.product.pojo.Characters;
|
||||
import com.nuyu.product.resp.MallProductTypeInfoVO;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
|
@ -51,9 +53,16 @@ public class CharactersController extends BaseController
|
|||
return AjaxResult.success(info);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出火影忍者列表
|
||||
*/
|
||||
@GetMapping("/ListAll7")
|
||||
public Result<List<Characters>>listAll(Characters characters){
|
||||
List<Characters>list=charactersService.listAll(characters);
|
||||
return null;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 导出火影忍者列表
|
||||
*/
|
||||
@RequiresPermissions("product:naruto:export")
|
||||
@Log(title = "火影忍者", businessType = BusinessType.EXPORT)
|
||||
@PostMapping("/export")
|
||||
|
|
|
@ -63,4 +63,6 @@ public interface CharactersService
|
|||
public int deleteCharactersByCharacterId(Long characterId);
|
||||
|
||||
PageInfo<Characters> list(Characters characters);
|
||||
|
||||
List<Characters> listAll(Characters characters);
|
||||
}
|
||||
|
|
|
@ -102,4 +102,9 @@ public class CharactersServiceImpl implements CharactersService
|
|||
PageInfo<Characters> pageInfo=new PageInfo<>(list);
|
||||
return pageInfo;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<Characters> listAll(Characters characters) {
|
||||
return List.of();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue