mirror of
https://gitee.com/ssssssss-team/magic-boot.git
synced 2025-02-01 01:22:49 +08:00
44 lines
1.2 KiB
Plaintext
44 lines
1.2 KiB
Plaintext
{
|
|
"properties" : { },
|
|
"id" : "566a8662385a42d381214b971873e98c",
|
|
"script" : null,
|
|
"groupId" : "7bdcc43555b9419caba2ee722e1aa2d3",
|
|
"name" : "列表",
|
|
"createTime" : 1649260172000,
|
|
"updateTime" : null,
|
|
"lock" : null,
|
|
"createBy" : null,
|
|
"updateBy" : null,
|
|
"path" : "/list",
|
|
"method" : "POST",
|
|
"parameters" : [ ],
|
|
"options" : [ {
|
|
"name" : "permission",
|
|
"value" : "data:test:view",
|
|
"description" : "允许拥有该权限的访问",
|
|
"required" : false,
|
|
"dataType" : "String",
|
|
"type" : null,
|
|
"defaultValue" : null,
|
|
"validateType" : null,
|
|
"error" : null,
|
|
"expression" : null,
|
|
"children" : null
|
|
} ],
|
|
"requestBody" : null,
|
|
"headers" : [ ],
|
|
"paths" : [ ],
|
|
"responseBody" : null,
|
|
"description" : null,
|
|
"requestBodyDefinition" : null,
|
|
"responseBodyDefinition" : null
|
|
}
|
|
================================
|
|
return db.page("""
|
|
select id,name,sex,head_portrait,remarks from t_data_test where 1=1
|
|
?{name, and name like concat('%',#{name},'%') }
|
|
?{sex, and sex = #{sex} }
|
|
?{headPortrait, and head_portrait in(#{headPortrait.split(',')}) }
|
|
?{remarks, and remarks <= #{remarks} }
|
|
and is_del = 0
|
|
""") |