Ver Fonte

12.20 陈宇

lwhhszx há 2 anos atrás
pai
commit
b5edd69124

+ 2 - 2
RMS/src/main/java/cn/cslg/report/common/model/vo/SyneryVO.java

@@ -53,8 +53,8 @@ public class SyneryVO extends BaseVO {
      * 结束时间
      */
     @Schema(description = "任务截止时间",required = true)
-    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
-    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
+    @DateTimeFormat(pattern = "yyyy-MM-dd")
+    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd")
     private Date endTime;
 
     /**

BIN
RMS/target/classes/cn/cslg/report/common/model/dto/ProductDTO.class


BIN
RMS/target/classes/cn/cslg/report/common/model/vo/ProductStandardVO.class


BIN
RMS/target/classes/cn/cslg/report/controller/ProductController.class


BIN
RMS/target/classes/cn/cslg/report/mapper/ProductMapper.class


BIN
RMS/target/classes/cn/cslg/report/service/IProductService.class


BIN
RMS/target/classes/cn/cslg/report/service/business/ReportService.class


BIN
RMS/target/classes/cn/cslg/report/service/impl/ProductServiceImpl.class


+ 3 - 3
RMS/target/classes/mapper/ProductMapper.xml

@@ -15,7 +15,7 @@
                 #{createPersonId})
     </insert>
 
-    <!--修改产品数据-->
+    <!--根据id修改产品数据-->
     <!--int update(Product product);-->
     <update id="update">
         update PRODUCT
@@ -58,7 +58,7 @@
     </update>
 
     <!--根据reportId关联查询产品数据-->
-    <!--ProductStandardVO getStandardByReportId(Integer reportId);-->
+    <!--ProductIncludeFilesVO getStandardByReportId(Integer reportId);-->
     <select id="getStandardByReportId" resultMap="getStandardByReportIdResultMap">
         select p.ID,
                p.product_name,
@@ -90,7 +90,7 @@
         order by rf_ID
     </select>
 
-    <resultMap id="getStandardByReportIdResultMap" type="cn.cslg.report.common.model.vo.ProductStandardVO">
+    <resultMap id="getStandardByReportIdResultMap" type="cn.cslg.report.common.model.vo.ProductIncludeFilesVO">
         <id column="id" property="id"/>
         <result column="PRODUCT_NAME" property="productName"/>
         <result column="PRODUCT_IDENTIFY" property="productIdentify"/>