* fix all OperatorWrap style error. The OperatorWrap style mandates that operator symbols should begin each new line, hence the need for adjusting the formatting.
* fix all ConstantName style error. Constant names are required to be written in uppercase letters and separated by underscores
* fix an SimplifyBooleanReturn error. Because key.indexOf(filters) > -1' can be replaced with 'key.contains(filters)'
@ -55,13 +55,13 @@ public interface HisRunDataMapper extends BaseMapper<HisRunDataInfo> {
*@paramendTime
*@paramendTime
*@return
*@return
*/
*/
@Select("SELECT "+
@Select("SELECT "
"tenant_id, item_id, tp_id, max(queue_size) as max_queue_size, max(reject_count) as max_reject_count, max(completed_task_count) as max_completed_task_count "+
+"tenant_id, item_id, tp_id, max(queue_size) as max_queue_size, max(reject_count) as max_reject_count, max(completed_task_count) as max_completed_task_count "
"FROM his_run_data "+
+"FROM his_run_data "
"where timestamp between #{startTime} and #{endTime} "+
+"where timestamp between #{startTime} and #{endTime} "