| | |
| | | import java.util.ArrayList;
|
| | | import java.util.List;
|
| | | import jakarta.servlet.http.HttpServletResponse;
|
| | | import lombok.AllArgsConstructor;
|
| | | import org.springframework.beans.factory.annotation.Autowired;
|
| | | import org.springframework.security.access.prepost.PreAuthorize;
|
| | | import org.springframework.validation.annotation.Validated;
|
| | |
| | | */
|
| | | @RestController
|
| | | @RequestMapping("/system/dict/data")
|
| | | @AllArgsConstructor
|
| | | public class SysDictDataController extends BaseController
|
| | | {
|
| | | @Autowired
|
| | | private ISysDictDataService dictDataService;
|
| | |
|
| | | @Autowired
|
| | | private ISysDictTypeService dictTypeService;
|
| | |
|
| | | @PreAuthorize("@ss.hasPermi('system:dict:list')")
|