实战总结

BeanUtil.copyProperties();
// 主要用来做拷贝 参数一 原始数据对象,参数二 接收数据对象
import cn.hutool.core.bean.BeanUtil;
BeanUtil.copyProperties(valuation,subFundValuation);
注解转换日期格式出参
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd") //出参
@ApiModelProperty(value = "估值日期")
private Date createTime;
字符串转换成long型
Long aLong = Long.valueOf(String);
拆分字符串放入数组
// 按照 , 逗号进行拆分并放入数组
String req = "1,2,2,3,4,5,5,5,56,7567,5";
String[] id = req.getIds().split(",");
MyBatisPuls XML中写 sql 传参
InstitutionFundSizeHistoryListRes queryInfo(@Param(value = "institutionName") String institutionName, @Param(value = "format") String format);
/* 注意: 
	1)@Param(value = "format)不是数据库中的对应字段
	2)当参数是多个时, parameterType="" 入参类型去掉,不必指定
	    
	    
*/	    

你可能感兴趣的:(实战总结)