建店资料收集fix

This commit is contained in:
shuo.wang
2024-10-09 22:31:49 +08:00
parent 8d456ea0c2
commit ff6645e574
4 changed files with 7 additions and 6 deletions

View File

@@ -9,7 +9,7 @@
<result property="shopId" column="shop_id" jdbcType="BIGINT"/>
<result property="shopContactName" column="shop_contact_name" jdbcType="VARCHAR"/>
<result property="shopContactMobile" column="shop_contact_mobile" jdbcType="VARCHAR"/>
<result property="businessHours" column="business_hours" jdbcType="TIMESTAMP"/>
<result property="businessHours" column="business_hours" jdbcType="VARCHAR"/>
<result property="businessMobile" column="business_mobile" jdbcType="VARCHAR"/>
<result property="doorPhoto" column="door_photo" jdbcType="VARCHAR"/>
<result property="inStorePhoto" column="in_store_photo" jdbcType="VARCHAR"/>
@@ -21,6 +21,7 @@
<result property="settlerIdCardFront" column="settler_id_card_front" jdbcType="VARCHAR"/>
<result property="settlerIdCardReverse" column="settler_id_card_reverse" jdbcType="VARCHAR"/>
<result property="settlerIdCardNo" column="settler_id_card_no" jdbcType="VARCHAR"/>
<result property="settlerName" column="settler_name" jdbcType="VARCHAR"/>
<result property="settlerBankPhotoUrl" column="settler_bank_photo_url" jdbcType="VARCHAR"/>
<result property="settlerBankNumber" column="settler_bank_number" jdbcType="VARCHAR"/>
<result property="settlerBankMobile" column="settler_bank_mobile" jdbcType="VARCHAR"/>
@@ -34,7 +35,7 @@
<sql id="Base_Column_List">
id
,shop_id,shop_contact_name,
shop_contact_mobile,business_hours,business_mobile,
shop_contact_mobile,business_hours,business_mobile,settler_bank_photo_url,settlerName,
door_photo,in_store_photo,juridical_id_card_front,
juridical_id_card_reverse,juridical_handheld_id_card_front,juridical_handheld_id_card_reverse,
settler_id_card_front,settler_id_card_reverse,settler_id_card_no,

View File

@@ -44,7 +44,7 @@ public class BuildInformationDO {
* 营业时间
*/
@Column(name = "business_hours")
private Date businessHours;
private String businessHours;
/**
* 营业电话

View File

@@ -31,8 +31,8 @@ public class BuildInformationRequest {
private String shopContactMobile;
@ApiModelProperty("营业时间")
@NotNull
private Date businessHours;
@NotBlank
private String businessHours;
@ApiModelProperty("营业电话")
@NotBlank

View File

@@ -45,7 +45,7 @@ public class BuildInformationResponse {
private String shopContactMobile;
@ApiModelProperty("营业时间")
private Date businessHours;
private String businessHours;
@ApiModelProperty("营业电话")
private String businessMobile;