feat:增加AList上传文件功能
This commit is contained in:
@@ -6,7 +6,7 @@ spring:
|
||||
name: @project.artifactId@
|
||||
version: @project.version@
|
||||
profiles:
|
||||
active: dev
|
||||
active: docker
|
||||
mail:
|
||||
host: smtp.163.com
|
||||
port: 465
|
||||
@@ -36,3 +36,7 @@ web-starter:
|
||||
|
||||
aes:
|
||||
secret-key: "sG5p7t9wBdKnPqRsUvYx2D5F8H9JmQ=2"
|
||||
|
||||
alist:
|
||||
username: admin
|
||||
password: 19940822Cxx
|
||||
|
||||
@@ -106,16 +106,17 @@
|
||||
</select>
|
||||
|
||||
<select id="queryFoodSummary" resultMap="foodSummaryResultMap">
|
||||
SELECT a.id AS id,
|
||||
a.name AS name,
|
||||
a.category AS category,
|
||||
a.recommend_rate AS recommendRate
|
||||
SELECT a.id AS id,
|
||||
a.name AS name,
|
||||
a.category AS category,
|
||||
a.recommend_rate AS recommendRate
|
||||
FROM food_recipe a
|
||||
<where>
|
||||
<if test="query.category != null and query.category != ''">
|
||||
a.category = #{query.category}
|
||||
</if>
|
||||
</where>
|
||||
ORDER BY a.create_time DESC
|
||||
</select>
|
||||
|
||||
<select id="queryFoodStats" resultType="com.cxx.home.dto.food.FoodStatsDto">
|
||||
|
||||
Reference in New Issue
Block a user