zhangtao
dongdingding 1 year ago
parent 370622f65d
commit 155feca066

@ -179,7 +179,7 @@ public class BPlanEnterpriseRequest {
* 0 1
*/
@ApiModelProperty(value = "0未检查 1已检查")
private Integer checkStatus;
private Integer checkStatus=0;
/**

@ -6,17 +6,18 @@ spring:
druid:
# 主库数据源
master:
#远程
#公司远程
# url: jdbc:mysql://39.101.188.84:3307/ying_ji?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
# username: root
# password: Admin123@
#本地
url: jdbc:mysql://localhost:3306/ying_ji?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
username: root
password: adminadmin
# url: jdbc:mysql://192.167.2.56:3306/ying_ji?useUnicode=true&useSSL=false&characterEncoding=utf8&serverTimezone=UTC
# url: jdbc:mysql://localhost:3306/ying_ji?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
# username: root
# password: Jichuang@2023
# password: adminadmin
#远程
url: jdbc:mysql://192.167.2.56:3306/ying_ji?useUnicode=true&useSSL=false&characterEncoding=utf8&serverTimezone=UTC
username: root
password: Jichuang@2023
#公司本地
# url: jdbc:mysql://localhost:3307/ying_ji?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
# username: root

@ -18,9 +18,9 @@ ruoyi:
# 开发环境配置
server:
# 服务器的HTTP端口默认为8080
# port: 13002
port: 13002
#本地
port: 9033
# port: 9033
servlet:
# 应用的访问路径
context-path: /

@ -440,6 +440,7 @@
<if test="userId != null">user_id,</if>
<if test="deptId != null">dept_id,</if>
<if test="uuto != null">uuto,</if>
<if test="checkStatus != null">check_status,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
@ -464,6 +465,7 @@
<if test="userId != null">#{userId},</if>
<if test="deptId != null">#{deptId},</if>
<if test="uuto != null">#{uuto},</if>
<if test="checkStatus != null">#{checkStatus},</if>
</trim>
</insert>

Loading…
Cancel
Save