| | |
| | | |
| | | import com.ruoyi.common.annotation.Sensitive; |
| | | import com.ruoyi.common.core.controller.BaseController; |
| | | import com.ruoyi.common.core.domain.AjaxResult; |
| | | import com.ruoyi.common.core.domain.R; |
| | | import com.ruoyi.common.enums.SensitiveStrategy; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | |
| | | */ |
| | | @ApiOperation("查询测试单表列表") |
| | | @GetMapping("/test") |
| | | public AjaxResult<TestSensitive> test() { |
| | | public R<TestSensitive> test() { |
| | | TestSensitive testSensitive = new TestSensitive(); |
| | | testSensitive.setIdCard("210397198608215431"); |
| | | testSensitive.setPhone("17640125371"); |
| | | testSensitive.setAddress("北京市朝阳区某某四合院1203室"); |
| | | testSensitive.setEmail("17640125371@163.com"); |
| | | testSensitive.setBankCard("6226456952351452853"); |
| | | return AjaxResult.success(testSensitive); |
| | | return R.ok(testSensitive); |
| | | } |
| | | |
| | | @Data |