111
k94314517
2023-08-19 ef90702eebdc4946fb5ae256af2624c45bf0b210
111
已修改3个文件
14 ■■■■ 文件已修改
server/src/main/java/doumeemes/dao/ext/dto/QueryWorkorderExtDTO.java 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
server/src/main/resources/application.yml 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
server/src/main/resources/mappers/WorkorderExtMapper.xml 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
server/src/main/java/doumeemes/dao/ext/dto/QueryWorkorderExtDTO.java
@@ -543,10 +543,10 @@
    private String mixParam;
    @ApiModelProperty(value = "开始时间")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date startDate;
//    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private String startDate;
    @ApiModelProperty(value = "截止时间")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date endDate;
//    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private String endDate;
}
server/src/main/resources/application.yml
@@ -10,7 +10,7 @@
#  application:
#    name: doumeemes
  profiles:
    active: standardPro
    active: standard
  # JSON返回配置
  jackson:
    # 默认时区
server/src/main/resources/mappers/WorkorderExtMapper.xml
@@ -957,10 +957,10 @@
              </if>
            </otherwise>
          </choose>
      <if test="startDate != null">
      <if test="startDate != null and startDate!=''">
        AND `a`.`PLAN_DATE` >= #{startDate}
      </if>
      <if test="endDate != null">
      <if test="endDate != null and endDate!=''">
        AND   #{endDate} >= `a`.`PLAN_DATE`
      </if>
      <if test="mixParam != null and mixParam!=''">