localizer
parent
861d135b66
commit
9febbb1874
|
|
@ -12,6 +12,7 @@
|
|||
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<appname>localizer</appname>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
|
|
@ -32,7 +33,7 @@
|
|||
</dependencies>
|
||||
|
||||
<build>
|
||||
<finalName>localizer</finalName>
|
||||
<finalName>${appname}</finalName>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
<conversionRule conversionWord="clr" converterClass="org.springframework.boot.logging.logback.ColorConverter"/>
|
||||
|
||||
<property name="log_path" value="logs"/>
|
||||
<property name="service_name" value="${project.artifactId}"/>
|
||||
<property name="service_name" value="${appname}"/>
|
||||
|
||||
<property name="console_pattern" value="%magenta(%d{yyyy-MM-dd HH:mm:ss.SSS}) %clr(%-5p) %blue([%t]) %cyan(%c) %blue([%M:%L]): %clr(%m%n)"/>
|
||||
|
||||
|
|
|
|||
|
|
@ -14,6 +14,7 @@
|
|||
<maven.compiler.source>8</maven.compiler.source>
|
||||
<maven.compiler.target>8</maven.compiler.target>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<appname>greenfrog</appname>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
|
|
@ -105,7 +106,7 @@
|
|||
</dependencies>
|
||||
|
||||
<build>
|
||||
<finalName>greenfrog</finalName>
|
||||
<finalName>${appname}</finalName>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
<conversionRule conversionWord="clr" converterClass="org.springframework.boot.logging.logback.ColorConverter"/>
|
||||
|
||||
<property name="log_path" value="logs"/>
|
||||
<property name="service_name" value="${project.artifactId}"/>
|
||||
<property name="service_name" value="${appname}"/>
|
||||
|
||||
<property name="console_pattern" value="%magenta(%d{yyyy-MM-dd HH:mm:ss.SSS}) %clr(%-5p) %blue([%t]) %cyan(%c) %blue([%M:%L]): %clr(%m%n)"/>
|
||||
|
||||
|
|
|
|||
|
|
@ -160,6 +160,7 @@
|
|||
LEFT JOIN biz_company m ON m.id = a.station_id AND m.station = 1
|
||||
LEFT JOIN sys_user n ON n.id = a.qu_audit_user_id
|
||||
LEFT JOIN sys_user o ON o.id = a.shi_audit_user_id
|
||||
LEFT JOIN sys_dict_item p ON p.dict_key = 'vehicle_type' AND p.val = e.truck_category
|
||||
</sql>
|
||||
<update id="busyDriver">
|
||||
UPDATE biz_driver
|
||||
|
|
|
|||
Loading…
Reference in New Issue