| | |
| | | import cc.mrbird.febs.common.core.entity.QueryRequest; |
| | | import cc.mrbird.febs.common.core.exception.FebsException; |
| | | import cc.mrbird.febs.common.core.utils.FebsUtil; |
| | | import io.swagger.annotations.Api; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import lombok.RequiredArgsConstructor; |
| | | import org.springframework.security.access.prepost.PreAuthorize; |
| | |
| | | * @date 2021-01-31 11:26:48 |
| | | * @since JDK1.8 |
| | | */ |
| | | @Api(tags = "人员备注信息录入接口") |
| | | @Slf4j |
| | | @Validated |
| | | @RestController |
| | | @RequestMapping("empRemarkinfo") |
| | | @RequestMapping("empRemarkInfo") |
| | | @RequiredArgsConstructor |
| | | public class EmpRemarkInfoController { |
| | | |