角色查询、fastjson升级1.2.79
This commit is contained in:
2
pom.xml
2
pom.xml
@ -38,7 +38,7 @@
|
||||
<java.version>1.8</java.version>
|
||||
<jedis.version>3.3.0</jedis.version>
|
||||
<swagger.version>3.0.0</swagger.version>
|
||||
<fastjson.version>1.2.78</fastjson.version>
|
||||
<fastjson.version>1.2.79</fastjson.version>
|
||||
<druid.version>1.2.8</druid.version>
|
||||
<hutool.version>5.5.7</hutool.version>
|
||||
<poi.version>4.1.2</poi.version>
|
||||
|
@ -8,12 +8,22 @@
|
||||
*/
|
||||
package co.yixiang.modules.system.service.dto;
|
||||
|
||||
import co.yixiang.annotation.Query;
|
||||
import lombok.Data;
|
||||
|
||||
import java.sql.Timestamp;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author hupeng
|
||||
* @date 2020-05-14
|
||||
*/
|
||||
@Data
|
||||
public class RoleQueryCriteria{
|
||||
|
||||
@Query(blurry = "name")
|
||||
private String blurry;
|
||||
|
||||
@Query(type = Query.Type.BETWEEN)
|
||||
private List<Timestamp> createTime;
|
||||
}
|
||||
|
Reference in New Issue
Block a user