Commit 26d44de7 by huluobin

update

parent 5c05bfa8
...@@ -45,6 +45,7 @@ public class CostDto { ...@@ -45,6 +45,7 @@ public class CostDto {
@ApiModelProperty("费用单备注") @ApiModelProperty("费用单备注")
private String costRemark; private String costRemark;
@ApiModelProperty("创建时间") @ApiModelProperty("创建时间")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private Date createTime; private Date createTime;
......
...@@ -36,6 +36,7 @@ ...@@ -36,6 +36,7 @@
or t1.bank_card_user LIKE CONCAT('%',#{key},'%') or t1.bank_card_user LIKE CONCAT('%',#{key},'%')
</if> </if>
</foreach> </foreach>
group by t1.id
</select> </select>
<select id="selectByKeys" resultType="com.blt.other.module.cost.model.CostDomain"> <select id="selectByKeys" resultType="com.blt.other.module.cost.model.CostDomain">
...@@ -63,6 +64,7 @@ ...@@ -63,6 +64,7 @@
<if test=" params.keys.endPayTime != null">AND t1.pay_time <![CDATA[<=]]>#{params.keys.endPayTime}</if> <if test=" params.keys.endPayTime != null">AND t1.pay_time <![CDATA[<=]]>#{params.keys.endPayTime}</if>
<if test=" params.keys.linkCost!=null and params.keys.linkCost != ''">and t1.sup_cost_no=#{params.keys.linkCost}</if> <if test=" params.keys.linkCost!=null and params.keys.linkCost != ''">and t1.sup_cost_no=#{params.keys.linkCost}</if>
<if test=" params.keys.projectTypes!=null and params.keys.projectTypes != ''">and t1.project_type=#{params.keys.projectTypes}</if> <if test=" params.keys.projectTypes!=null and params.keys.projectTypes != ''">and t1.project_type=#{params.keys.projectTypes}</if>
group by t1.id
ORDER BY ORDER BY
t1.id DESC t1.id DESC
</select> </select>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment