摘要:
@ApiOperation(value = "分页查询现金发放列表")@GetMapping("/getCashGrantListByPage")public ResponseBean getCashGrantListByPage(@Validated GetCashGrantListByPageE 阅读全文
摘要:
1.建立 ExcelUtiles操作类: 定义导出方法defaultExport /** * 默认的 excel 导出 * * @param list 数据 * @param pojoClass pojo类型 * @param fileName 文件名称 * @param response * @p 阅读全文
摘要:
PageHelper.startPage(req.getCurrentPage(), req.getPageSize());List<CashGrantListDto> myList = cashGrantMapper.selectCashGrantList(entity);PageInfo<Cas 阅读全文
摘要:
域名解析 设置 在C:\Windows\System32\drivers\etc 设置 域名和地址解析 阅读全文
摘要:
<dependency> <groupId>cn.hutool</groupId> <artifactId>hutool-all</artifactId> <version>${hutool.version}</version> </dependency> 阅读全文
摘要:
@ApiModel@Data@NoArgsConstructor@AllArgsConstructor@Builderpublic class MainMessageSaveReq implements Serializable { @ApiModelProperty(value = "发布时间") 阅读全文
摘要:
public MainMessageEntity buildInsert(Long userId, Integer tenantId) { return MainMessageEntity.builder() .messType(messType) .messTitle(messTitle) .me 阅读全文
摘要:
1.时间格式转换成字符串 /** * date 转换 成标准格式 yyyy-MM-dd hh:mm:ss * return date */ public String DateToStringYmdH(Date date) { SimpleDateFormat sf = new SimpleDate 阅读全文