Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
90b45a05bc
|
|
@ -22,7 +22,7 @@
|
|||
|
||||
<sql id="selectCustomerAddress">
|
||||
SELECT customer_address_id, customer_id, name, phone, province_id, city_id, country_id, status,
|
||||
address, create_by, create_time, remark
|
||||
address, create_by, create_time, remark, is_default
|
||||
FROM customer_address
|
||||
</sql>
|
||||
|
||||
|
|
@ -69,7 +69,7 @@
|
|||
<if test="countryId != null and countryId != 0">country_id,</if>
|
||||
<if test="status != null and status != ''">status,</if>
|
||||
<if test="address != null and address != ''">address,</if>
|
||||
<if test="isDefault != null and isDefault != 0">is_default,</if>
|
||||
<if test="isDefault != null">is_default,</if>
|
||||
<if test="createBy != null and createBy != ''">create_by,</if>
|
||||
<if test="remark != null and remark != ''">remark,</if>
|
||||
create_time
|
||||
|
|
@ -90,7 +90,7 @@
|
|||
</insert>
|
||||
|
||||
<update id="updateCustomerAddress" parameterType="com.ghy.customer.domain.CustomerAddress">
|
||||
update costomer_address
|
||||
update customer_address
|
||||
<set>
|
||||
<if test="name != null and name != ''">name = #{name},</if>
|
||||
<if test="phone != null and phone != ''">phone = #{phone},</if>
|
||||
|
|
@ -98,7 +98,7 @@
|
|||
<if test="cityId != null and cityId != 0">city_id = #{cityId},</if>
|
||||
<if test="countryId != null and countryId != 0">country_id = #{countryId},</if>
|
||||
<if test="address != null and address != ''">address = #{address},</if>
|
||||
<if test="isDefault != null and isDefault != ''">is_default = #{isDefault},</if>
|
||||
<if test="isDefault != null">is_default = #{isDefault},</if>
|
||||
<if test="status != null and status != ''">status = #{status},</if>
|
||||
<if test="remark != null">remark = #{remark},</if>
|
||||
<if test="updateBy != null and updateBy != ''">update_by = #{updateBy},</if>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
package com.ghy.payment.domain;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import com.ghy.common.annotation.Excel;
|
||||
import com.ghy.common.core.domain.BaseEntity;
|
||||
import lombok.Data;
|
||||
|
|
@ -40,6 +41,7 @@ public class FinancialMaster extends BaseEntity {
|
|||
private Integer payStatus;
|
||||
|
||||
@Excel(name = "付款时间", cellType = Excel.ColumnType.STRING)
|
||||
private String payTime;
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private Data payTime;
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue