按季导入商户 up

This commit is contained in:
zhuangdashia 2025-10-14 17:36:06 +08:00
parent a4b0c0c4d0
commit 60611b224b
4 changed files with 16 additions and 18 deletions

View File

@ -5,7 +5,6 @@ import com.baomidou.mybatisplus.annotation.*;
import lombok.Data;
import lombok.EqualsAndHashCode;
import java.math.BigDecimal;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
import java.io.Serial;
@ -73,7 +72,7 @@ public class MpsImportNormalMerchant extends TenantEntity {
/**
* 创建时间
*/
private Date createDate;
private String createDate;
/**
* 来源
@ -83,7 +82,7 @@ public class MpsImportNormalMerchant extends TenantEntity {
/**
* 注销时间
*/
private Date cancelTime;
private String cancelTime;
/**
* 拓展员工号
@ -163,12 +162,12 @@ public class MpsImportNormalMerchant extends TenantEntity {
/**
* 营业执照起始日期
*/
private Date businessLicenseStartDate;
private String businessLicenseStartDate;
/**
* 营业执照截止日期
*/
private Date businessLicenseEndDate;
private String businessLicenseEndDate;
/**
* 开户证件类型

View File

@ -9,7 +9,6 @@ import lombok.Data;
import lombok.EqualsAndHashCode;
import jakarta.validation.constraints.*;
import java.math.BigDecimal;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
/**
@ -71,7 +70,7 @@ public class MpsImportNormalMerchantBo extends BaseEntity {
/**
* 创建时间
*/
private Date createDate;
private String createDate;
/**
* 来源
@ -81,7 +80,7 @@ public class MpsImportNormalMerchantBo extends BaseEntity {
/**
* 注销时间
*/
private Date cancelTime;
private String cancelTime;
/**
* 拓展员工号
@ -161,12 +160,12 @@ public class MpsImportNormalMerchantBo extends BaseEntity {
/**
* 营业执照起始日期
*/
private Date businessLicenseStartDate;
private String businessLicenseStartDate;
/**
* 营业执照截止日期
*/
private Date businessLicenseEndDate;
private String businessLicenseEndDate;
/**
* 开户证件类型

View File

@ -100,7 +100,7 @@ public class MpsImportNormalMerchantImportVo implements Serializable {
* 创建时间
*/
@ExcelProperty(value = "创建时间")
private Date createDate;
private String createDate;
/**
* 来源
@ -112,7 +112,7 @@ public class MpsImportNormalMerchantImportVo implements Serializable {
* 注销时间
*/
@ExcelProperty(value = "注销时间")
private Date cancelTime;
private String cancelTime;
/**
* 拓展员工号
@ -208,13 +208,13 @@ public class MpsImportNormalMerchantImportVo implements Serializable {
* 营业执照起始日期
*/
@ExcelProperty(value = "营业执照起始日期")
private Date businessLicenseStartDate;
private String businessLicenseStartDate;
/**
* 营业执照截止日期
*/
@ExcelProperty(value = "营业执照截止日期")
private Date businessLicenseEndDate;
private String businessLicenseEndDate;
/**
* 开户证件类型

View File

@ -89,7 +89,7 @@ public class MpsImportNormalMerchantVo implements Serializable {
* 创建时间
*/
@ExcelProperty(value = "创建时间")
private Date createDate;
private String createDate;
/**
* 来源
@ -101,7 +101,7 @@ public class MpsImportNormalMerchantVo implements Serializable {
* 注销时间
*/
@ExcelProperty(value = "注销时间")
private Date cancelTime;
private String cancelTime;
/**
* 拓展员工号
@ -197,13 +197,13 @@ public class MpsImportNormalMerchantVo implements Serializable {
* 营业执照起始日期
*/
@ExcelProperty(value = "营业执照起始日期")
private Date businessLicenseStartDate;
private String businessLicenseStartDate;
/**
* 营业执照截止日期
*/
@ExcelProperty(value = "营业执照截止日期")
private Date businessLicenseEndDate;
private String businessLicenseEndDate;
/**
* 开户证件类型