Merge branch 'refs/heads/master'
This commit is contained in:
commit
002907d98d
|
|
@ -2,6 +2,7 @@
|
|||
<project version="4">
|
||||
<component name="CompilerConfiguration">
|
||||
<annotationProcessing>
|
||||
<profile default="true" name="Default" enabled="true" />
|
||||
<profile name="Maven default annotation processors profile" enabled="true">
|
||||
<sourceOutputDir name="target/generated-sources/annotations" />
|
||||
<sourceTestOutputDir name="target/generated-test-sources/test-annotations" />
|
||||
|
|
|
|||
|
|
@ -11,12 +11,12 @@ spring:
|
|||
# url: jdbc:mysql://192.168.0.14:4417/gzimtcs?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowMultiQueries=true
|
||||
# username: root
|
||||
# password: Bonus@admin123!
|
||||
url: jdbc:mysql://127.0.0.1:3306/gzimt250319?serverTimezone=UTC&useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&useSSL=false
|
||||
username: ruanliang
|
||||
password: ruanliang@MYSQL
|
||||
url: jdbc:mysql://14.103.246.124/gz_imt0703?serverTimezone=UTC&useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&useSSL=false
|
||||
username: root
|
||||
password: mysql_CXzwWd
|
||||
type: com.alibaba.druid.pool.DruidDataSource
|
||||
redis:
|
||||
host: localhost
|
||||
host: 14.103.246.124
|
||||
port: 6379
|
||||
database: 7
|
||||
|
||||
|
|
@ -45,6 +45,7 @@ file:
|
|||
upload_path:
|
||||
windows: D://files/zg_gqj
|
||||
linux: /home/zg_gqj/files
|
||||
other: /Users/syruan/files
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -51,6 +51,7 @@ file:
|
|||
upload_path:
|
||||
windows: D://files/zg_gqj
|
||||
linux: /home/zg_gqj/files
|
||||
other: /Users/syruan/files
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
spring:
|
||||
profiles:
|
||||
active: prod
|
||||
active: test
|
||||
|
|
@ -81,6 +81,7 @@
|
|||
|
||||
<select id="getDetails" resultType="com.bonus.aqgqj.business.backstage.entity.back.BackApplyVo">
|
||||
SELECT sta.id,
|
||||
bp.`NAME` as projectName,
|
||||
sta.CODE,
|
||||
sta.project_id as projectId,
|
||||
sta.back_time as backTime,
|
||||
|
|
@ -90,6 +91,7 @@
|
|||
sum(sbd.num) as backNum,
|
||||
GROUP_CONCAT(CONCAT(mt.`name`, ':', sbd.num) SEPARATOR ', ') AS summarize
|
||||
FROM st_back_apply sta
|
||||
LEFT JOIN bm_project bp ON sta.project_id = bp.ID
|
||||
LEFT JOIN st_back_details sbd ON sbd.apply_id = sta.id
|
||||
LEFT JOIN st_ma_type mt ON mt.id = sbd.model_id
|
||||
LEFT JOIN st_ma_type mt2 ON mt.parent_id = mt2.id
|
||||
|
|
|
|||
Loading…
Reference in New Issue