Commit c3b1e83f by fudahua

Merge remote-tracking branch 'origin/developer' into developer

parents be24a5bc aa17893f
......@@ -27,8 +27,8 @@ public class MaidianLogController extends WebBaseController{
List<MaidianLogDTO> maidianLogDTOList = JSON.parseArray(maidianLogStr,MaidianLogDTO.class);
for (MaidianLogDTO maidianLogDTO : maidianLogDTOList) {
String options = maidianLogDTO.getOptions();
if(StringUtils.isNotBlank(options) && options.length() > 128){
maidianLogDTO.setOptions(options.substring(0,127));
if(StringUtils.isNotBlank(options) && options.length() > 2000){
maidianLogDTO.setOptions(options.substring(0,1999));
}
maidianLogApiService.insert(maidianLogDTO);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment