package com.gkhy.safePlatform.equipment.model.dto.req; import com.gkhy.safePlatform.equipment.annotation.Query; public class KeypointEquipmentInfoQueryCriteria { //名称 @Query(type = Query.Type.INNER_LIKE) private String name; //名称 public String getName() { return name; } public void setName(String name) { this.name = name; } }