feat(settlement): 更新分销结算逻辑支持固定金额和百分比两种佣金类型
- 替换 CommissionRateConfig 为 CommissionConfig,支持 commissionType 字段区分固定金额和百分比模式 - 新增 calcMoneyByCommissionType 方法,根据 commissionType 计算佣金金额 - 修改 findOrderSingleGoods 为 findOrderSingleGoodsInfo,返回商品信息和数量 - 更新日志输出格式,显示商品数量和佣金类型信息 - 调整信用分销商佣金方法参数,传递商品数量和佣金配置对象 - 新增 OrderGoodsInfo 和 CommissionConfig 内部类定义 - 实现固定金额模式按件计算佣金的逻辑 - 添加安全数值处理方法 safeValue 和 safePositive - 更新佣金注释构建方法,显示佣金类型和具体数值信息
This commit is contained in:
@@ -86,13 +86,15 @@ public class BatchImportSupport {
|
|||||||
SFunction<T, String> nameGetter,
|
SFunction<T, String> nameGetter,
|
||||||
SFunction<T, Integer> companyIdGetter,
|
SFunction<T, Integer> companyIdGetter,
|
||||||
BiConsumer<T, Integer> companyIdSetter,
|
BiConsumer<T, Integer> companyIdSetter,
|
||||||
|
SFunction<T, Boolean> hasDataGetter,
|
||||||
|
BiConsumer<T, Boolean> hasDataSetter,
|
||||||
SFunction<T, Integer> tenantIdGetter,
|
SFunction<T, Integer> tenantIdGetter,
|
||||||
Supplier<T> patchFactory) {
|
Supplier<T> patchFactory) {
|
||||||
boolean onlyNullFlag = (onlyNull == null) || Boolean.TRUE.equals(onlyNull);
|
boolean onlyNullFlag = (onlyNull == null) || Boolean.TRUE.equals(onlyNull);
|
||||||
|
|
||||||
// 1) 读取待处理数据(仅取必要字段,避免一次性拉全表字段)
|
// 1) 读取待处理数据(仅取必要字段,避免一次性拉全表字段)
|
||||||
var query = service.lambdaQuery()
|
var query = service.lambdaQuery()
|
||||||
.select(idGetter, nameGetter, companyIdGetter, tenantIdGetter)
|
.select(idGetter, nameGetter, companyIdGetter, hasDataGetter, tenantIdGetter)
|
||||||
.eq(currentTenantId != null, tenantIdGetter, currentTenantId)
|
.eq(currentTenantId != null, tenantIdGetter, currentTenantId)
|
||||||
.isNotNull(nameGetter);
|
.isNotNull(nameGetter);
|
||||||
if (onlyNullFlag) {
|
if (onlyNullFlag) {
|
||||||
@@ -191,12 +193,17 @@ public class BatchImportSupport {
|
|||||||
matched++;
|
matched++;
|
||||||
|
|
||||||
Integer oldCompanyId = row != null ? companyIdGetter.apply(row) : null;
|
Integer oldCompanyId = row != null ? companyIdGetter.apply(row) : null;
|
||||||
|
Boolean oldHasData = row != null ? hasDataGetter.apply(row) : null;
|
||||||
boolean needUpdate;
|
boolean needUpdate;
|
||||||
if (onlyNullFlag) {
|
if (onlyNullFlag) {
|
||||||
needUpdate = oldCompanyId != null && oldCompanyId == 0;
|
needUpdate = oldCompanyId != null && oldCompanyId == 0;
|
||||||
} else {
|
} else {
|
||||||
needUpdate = oldCompanyId == null || !companyId.equals(oldCompanyId);
|
needUpdate = oldCompanyId == null || !companyId.equals(oldCompanyId);
|
||||||
}
|
}
|
||||||
|
// 若已匹配到企业,但 hasData 未标记,则也需要回填 hasData=1
|
||||||
|
if (!Boolean.TRUE.equals(oldHasData)) {
|
||||||
|
needUpdate = true;
|
||||||
|
}
|
||||||
if (!needUpdate) {
|
if (!needUpdate) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
@@ -208,6 +215,7 @@ public class BatchImportSupport {
|
|||||||
T patch = patchFactory.get();
|
T patch = patchFactory.get();
|
||||||
idSetter.accept(patch, id);
|
idSetter.accept(patch, id);
|
||||||
companyIdSetter.accept(patch, companyId);
|
companyIdSetter.accept(patch, companyId);
|
||||||
|
hasDataSetter.accept(patch, Boolean.TRUE);
|
||||||
updates.add(patch);
|
updates.add(patch);
|
||||||
if (updates.size() >= batchSize) {
|
if (updates.size() >= batchSize) {
|
||||||
List<T> batch = new ArrayList<>(updates);
|
List<T> batch = new ArrayList<>(updates);
|
||||||
|
|||||||
@@ -165,6 +165,8 @@ public class CreditAdministrativeLicenseController extends BaseController {
|
|||||||
CreditAdministrativeLicense::getName,
|
CreditAdministrativeLicense::getName,
|
||||||
CreditAdministrativeLicense::getCompanyId,
|
CreditAdministrativeLicense::getCompanyId,
|
||||||
CreditAdministrativeLicense::setCompanyId,
|
CreditAdministrativeLicense::setCompanyId,
|
||||||
|
CreditAdministrativeLicense::getHasData,
|
||||||
|
CreditAdministrativeLicense::setHasData,
|
||||||
CreditAdministrativeLicense::getTenantId,
|
CreditAdministrativeLicense::getTenantId,
|
||||||
CreditAdministrativeLicense::new
|
CreditAdministrativeLicense::new
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -165,6 +165,8 @@ public class CreditBankruptcyController extends BaseController {
|
|||||||
CreditBankruptcy::getParty,
|
CreditBankruptcy::getParty,
|
||||||
CreditBankruptcy::getCompanyId,
|
CreditBankruptcy::getCompanyId,
|
||||||
CreditBankruptcy::setCompanyId,
|
CreditBankruptcy::setCompanyId,
|
||||||
|
CreditBankruptcy::getHasData,
|
||||||
|
CreditBankruptcy::setHasData,
|
||||||
CreditBankruptcy::getTenantId,
|
CreditBankruptcy::getTenantId,
|
||||||
CreditBankruptcy::new
|
CreditBankruptcy::new
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -164,6 +164,8 @@ public class CreditBranchController extends BaseController {
|
|||||||
CreditBranch::getName,
|
CreditBranch::getName,
|
||||||
CreditBranch::getCompanyId,
|
CreditBranch::getCompanyId,
|
||||||
CreditBranch::setCompanyId,
|
CreditBranch::setCompanyId,
|
||||||
|
CreditBranch::getHasData,
|
||||||
|
CreditBranch::setHasData,
|
||||||
CreditBranch::getTenantId,
|
CreditBranch::getTenantId,
|
||||||
CreditBranch::new
|
CreditBranch::new
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -161,6 +161,8 @@ public class CreditBreachOfTrustController extends BaseController {
|
|||||||
CreditBreachOfTrust::getPlaintiffAppellant,
|
CreditBreachOfTrust::getPlaintiffAppellant,
|
||||||
CreditBreachOfTrust::getCompanyId,
|
CreditBreachOfTrust::getCompanyId,
|
||||||
CreditBreachOfTrust::setCompanyId,
|
CreditBreachOfTrust::setCompanyId,
|
||||||
|
CreditBreachOfTrust::getHasData,
|
||||||
|
CreditBreachOfTrust::setHasData,
|
||||||
CreditBreachOfTrust::getTenantId,
|
CreditBreachOfTrust::getTenantId,
|
||||||
CreditBreachOfTrust::new
|
CreditBreachOfTrust::new
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -164,6 +164,8 @@ public class CreditCaseFilingController extends BaseController {
|
|||||||
CreditCaseFiling::getAppellee,
|
CreditCaseFiling::getAppellee,
|
||||||
CreditCaseFiling::getCompanyId,
|
CreditCaseFiling::getCompanyId,
|
||||||
CreditCaseFiling::setCompanyId,
|
CreditCaseFiling::setCompanyId,
|
||||||
|
CreditCaseFiling::getHasData,
|
||||||
|
CreditCaseFiling::setHasData,
|
||||||
CreditCaseFiling::getTenantId,
|
CreditCaseFiling::getTenantId,
|
||||||
CreditCaseFiling::new
|
CreditCaseFiling::new
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -164,6 +164,8 @@ public class CreditCompetitorController extends BaseController {
|
|||||||
CreditCompetitor::getName,
|
CreditCompetitor::getName,
|
||||||
CreditCompetitor::getCompanyId,
|
CreditCompetitor::getCompanyId,
|
||||||
CreditCompetitor::setCompanyId,
|
CreditCompetitor::setCompanyId,
|
||||||
|
CreditCompetitor::getHasData,
|
||||||
|
CreditCompetitor::setHasData,
|
||||||
CreditCompetitor::getTenantId,
|
CreditCompetitor::getTenantId,
|
||||||
CreditCompetitor::new
|
CreditCompetitor::new
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -164,6 +164,8 @@ public class CreditCourtAnnouncementController extends BaseController {
|
|||||||
CreditCourtAnnouncement::getAppellee,
|
CreditCourtAnnouncement::getAppellee,
|
||||||
CreditCourtAnnouncement::getCompanyId,
|
CreditCourtAnnouncement::getCompanyId,
|
||||||
CreditCourtAnnouncement::setCompanyId,
|
CreditCourtAnnouncement::setCompanyId,
|
||||||
|
CreditCourtAnnouncement::getHasData,
|
||||||
|
CreditCourtAnnouncement::setHasData,
|
||||||
CreditCourtAnnouncement::getTenantId,
|
CreditCourtAnnouncement::getTenantId,
|
||||||
CreditCourtAnnouncement::new
|
CreditCourtAnnouncement::new
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -165,6 +165,8 @@ public class CreditCourtSessionController extends BaseController {
|
|||||||
CreditCourtSession::getAppellee,
|
CreditCourtSession::getAppellee,
|
||||||
CreditCourtSession::getCompanyId,
|
CreditCourtSession::getCompanyId,
|
||||||
CreditCourtSession::setCompanyId,
|
CreditCourtSession::setCompanyId,
|
||||||
|
CreditCourtSession::getHasData,
|
||||||
|
CreditCourtSession::setHasData,
|
||||||
CreditCourtSession::getTenantId,
|
CreditCourtSession::getTenantId,
|
||||||
CreditCourtSession::new
|
CreditCourtSession::new
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -160,6 +160,8 @@ public class CreditCustomerController extends BaseController {
|
|||||||
CreditCustomer::getName,
|
CreditCustomer::getName,
|
||||||
CreditCustomer::getCompanyId,
|
CreditCustomer::getCompanyId,
|
||||||
CreditCustomer::setCompanyId,
|
CreditCustomer::setCompanyId,
|
||||||
|
CreditCustomer::getHasData,
|
||||||
|
CreditCustomer::setHasData,
|
||||||
CreditCustomer::getTenantId,
|
CreditCustomer::getTenantId,
|
||||||
CreditCustomer::new
|
CreditCustomer::new
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -164,6 +164,8 @@ public class CreditDeliveryNoticeController extends BaseController {
|
|||||||
CreditDeliveryNotice::getOtherPartiesThirdParty,
|
CreditDeliveryNotice::getOtherPartiesThirdParty,
|
||||||
CreditDeliveryNotice::getCompanyId,
|
CreditDeliveryNotice::getCompanyId,
|
||||||
CreditDeliveryNotice::setCompanyId,
|
CreditDeliveryNotice::setCompanyId,
|
||||||
|
CreditDeliveryNotice::getHasData,
|
||||||
|
CreditDeliveryNotice::setHasData,
|
||||||
CreditDeliveryNotice::getTenantId,
|
CreditDeliveryNotice::getTenantId,
|
||||||
CreditDeliveryNotice::new
|
CreditDeliveryNotice::new
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -164,6 +164,8 @@ public class CreditExternalController extends BaseController {
|
|||||||
CreditExternal::getName,
|
CreditExternal::getName,
|
||||||
CreditExternal::getCompanyId,
|
CreditExternal::getCompanyId,
|
||||||
CreditExternal::setCompanyId,
|
CreditExternal::setCompanyId,
|
||||||
|
CreditExternal::getHasData,
|
||||||
|
CreditExternal::setHasData,
|
||||||
CreditExternal::getTenantId,
|
CreditExternal::getTenantId,
|
||||||
CreditExternal::new
|
CreditExternal::new
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -165,6 +165,8 @@ public class CreditFinalVersionController extends BaseController {
|
|||||||
CreditFinalVersion::getAppellee,
|
CreditFinalVersion::getAppellee,
|
||||||
CreditFinalVersion::getCompanyId,
|
CreditFinalVersion::getCompanyId,
|
||||||
CreditFinalVersion::setCompanyId,
|
CreditFinalVersion::setCompanyId,
|
||||||
|
CreditFinalVersion::getHasData,
|
||||||
|
CreditFinalVersion::setHasData,
|
||||||
CreditFinalVersion::getTenantId,
|
CreditFinalVersion::getTenantId,
|
||||||
CreditFinalVersion::new
|
CreditFinalVersion::new
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -165,6 +165,8 @@ public class CreditGqdjController extends BaseController {
|
|||||||
CreditGqdj::getAppellee,
|
CreditGqdj::getAppellee,
|
||||||
CreditGqdj::getCompanyId,
|
CreditGqdj::getCompanyId,
|
||||||
CreditGqdj::setCompanyId,
|
CreditGqdj::setCompanyId,
|
||||||
|
CreditGqdj::getHasData,
|
||||||
|
CreditGqdj::setHasData,
|
||||||
CreditGqdj::getTenantId,
|
CreditGqdj::getTenantId,
|
||||||
CreditGqdj::new
|
CreditGqdj::new
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -164,6 +164,8 @@ public class CreditHistoricalLegalPersonController extends BaseController {
|
|||||||
CreditHistoricalLegalPerson::getName,
|
CreditHistoricalLegalPerson::getName,
|
||||||
CreditHistoricalLegalPerson::getCompanyId,
|
CreditHistoricalLegalPerson::getCompanyId,
|
||||||
CreditHistoricalLegalPerson::setCompanyId,
|
CreditHistoricalLegalPerson::setCompanyId,
|
||||||
|
CreditHistoricalLegalPerson::getHasData,
|
||||||
|
CreditHistoricalLegalPerson::setHasData,
|
||||||
CreditHistoricalLegalPerson::getTenantId,
|
CreditHistoricalLegalPerson::getTenantId,
|
||||||
CreditHistoricalLegalPerson::new
|
CreditHistoricalLegalPerson::new
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -174,6 +174,8 @@ public class CreditJudgmentDebtorController extends BaseController {
|
|||||||
CreditJudgmentDebtor::getName,
|
CreditJudgmentDebtor::getName,
|
||||||
CreditJudgmentDebtor::getCompanyId,
|
CreditJudgmentDebtor::getCompanyId,
|
||||||
CreditJudgmentDebtor::setCompanyId,
|
CreditJudgmentDebtor::setCompanyId,
|
||||||
|
CreditJudgmentDebtor::getHasData,
|
||||||
|
CreditJudgmentDebtor::setHasData,
|
||||||
CreditJudgmentDebtor::getTenantId,
|
CreditJudgmentDebtor::getTenantId,
|
||||||
CreditJudgmentDebtor::new
|
CreditJudgmentDebtor::new
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -165,6 +165,8 @@ public class CreditJudicialDocumentController extends BaseController {
|
|||||||
CreditJudicialDocument::getAppellee,
|
CreditJudicialDocument::getAppellee,
|
||||||
CreditJudicialDocument::getCompanyId,
|
CreditJudicialDocument::getCompanyId,
|
||||||
CreditJudicialDocument::setCompanyId,
|
CreditJudicialDocument::setCompanyId,
|
||||||
|
CreditJudicialDocument::getHasData,
|
||||||
|
CreditJudicialDocument::setHasData,
|
||||||
CreditJudicialDocument::getTenantId,
|
CreditJudicialDocument::getTenantId,
|
||||||
CreditJudicialDocument::new
|
CreditJudicialDocument::new
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -163,6 +163,8 @@ public class CreditJudiciaryController extends BaseController {
|
|||||||
CreditJudiciary::getName,
|
CreditJudiciary::getName,
|
||||||
CreditJudiciary::getCompanyId,
|
CreditJudiciary::getCompanyId,
|
||||||
CreditJudiciary::setCompanyId,
|
CreditJudiciary::setCompanyId,
|
||||||
|
CreditJudiciary::getHasData,
|
||||||
|
CreditJudiciary::setHasData,
|
||||||
CreditJudiciary::getTenantId,
|
CreditJudiciary::getTenantId,
|
||||||
CreditJudiciary::new
|
CreditJudiciary::new
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -164,6 +164,8 @@ public class CreditMediationController extends BaseController {
|
|||||||
CreditMediation::getAppellee,
|
CreditMediation::getAppellee,
|
||||||
CreditMediation::getCompanyId,
|
CreditMediation::getCompanyId,
|
||||||
CreditMediation::setCompanyId,
|
CreditMediation::setCompanyId,
|
||||||
|
CreditMediation::getHasData,
|
||||||
|
CreditMediation::setHasData,
|
||||||
CreditMediation::getTenantId,
|
CreditMediation::getTenantId,
|
||||||
CreditMediation::new
|
CreditMediation::new
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -164,6 +164,8 @@ public class CreditNearbyCompanyController extends BaseController {
|
|||||||
CreditNearbyCompany::getName,
|
CreditNearbyCompany::getName,
|
||||||
CreditNearbyCompany::getCompanyId,
|
CreditNearbyCompany::getCompanyId,
|
||||||
CreditNearbyCompany::setCompanyId,
|
CreditNearbyCompany::setCompanyId,
|
||||||
|
CreditNearbyCompany::getHasData,
|
||||||
|
CreditNearbyCompany::setHasData,
|
||||||
CreditNearbyCompany::getTenantId,
|
CreditNearbyCompany::getTenantId,
|
||||||
CreditNearbyCompany::new
|
CreditNearbyCompany::new
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -164,6 +164,8 @@ public class CreditPatentController extends BaseController {
|
|||||||
CreditPatent::getPatentApplicant,
|
CreditPatent::getPatentApplicant,
|
||||||
CreditPatent::getCompanyId,
|
CreditPatent::getCompanyId,
|
||||||
CreditPatent::setCompanyId,
|
CreditPatent::setCompanyId,
|
||||||
|
CreditPatent::getHasData,
|
||||||
|
CreditPatent::setHasData,
|
||||||
CreditPatent::getTenantId,
|
CreditPatent::getTenantId,
|
||||||
CreditPatent::new
|
CreditPatent::new
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -164,6 +164,8 @@ public class CreditRiskRelationController extends BaseController {
|
|||||||
CreditRiskRelation::getMainBodyName,
|
CreditRiskRelation::getMainBodyName,
|
||||||
CreditRiskRelation::getCompanyId,
|
CreditRiskRelation::getCompanyId,
|
||||||
CreditRiskRelation::setCompanyId,
|
CreditRiskRelation::setCompanyId,
|
||||||
|
CreditRiskRelation::getHasData,
|
||||||
|
CreditRiskRelation::setHasData,
|
||||||
CreditRiskRelation::getTenantId,
|
CreditRiskRelation::getTenantId,
|
||||||
CreditRiskRelation::new
|
CreditRiskRelation::new
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -164,6 +164,8 @@ public class CreditSupplierController extends BaseController {
|
|||||||
CreditSupplier::getSupplier,
|
CreditSupplier::getSupplier,
|
||||||
CreditSupplier::getCompanyId,
|
CreditSupplier::getCompanyId,
|
||||||
CreditSupplier::setCompanyId,
|
CreditSupplier::setCompanyId,
|
||||||
|
CreditSupplier::getHasData,
|
||||||
|
CreditSupplier::setHasData,
|
||||||
CreditSupplier::getTenantId,
|
CreditSupplier::getTenantId,
|
||||||
CreditSupplier::new
|
CreditSupplier::new
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -164,6 +164,8 @@ public class CreditSuspectedRelationshipController extends BaseController {
|
|||||||
CreditSuspectedRelationship::getName,
|
CreditSuspectedRelationship::getName,
|
||||||
CreditSuspectedRelationship::getCompanyId,
|
CreditSuspectedRelationship::getCompanyId,
|
||||||
CreditSuspectedRelationship::setCompanyId,
|
CreditSuspectedRelationship::setCompanyId,
|
||||||
|
CreditSuspectedRelationship::getHasData,
|
||||||
|
CreditSuspectedRelationship::setHasData,
|
||||||
CreditSuspectedRelationship::getTenantId,
|
CreditSuspectedRelationship::getTenantId,
|
||||||
CreditSuspectedRelationship::new
|
CreditSuspectedRelationship::new
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -175,6 +175,8 @@ public class CreditUserController extends BaseController {
|
|||||||
CreditUser::getWinningName,
|
CreditUser::getWinningName,
|
||||||
CreditUser::getCompanyId,
|
CreditUser::getCompanyId,
|
||||||
CreditUser::setCompanyId,
|
CreditUser::setCompanyId,
|
||||||
|
CreditUser::getHasData,
|
||||||
|
CreditUser::setHasData,
|
||||||
CreditUser::getTenantId,
|
CreditUser::getTenantId,
|
||||||
CreditUser::new
|
CreditUser::new
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -165,6 +165,8 @@ public class CreditXgxfController extends BaseController {
|
|||||||
CreditXgxf::getDataType,
|
CreditXgxf::getDataType,
|
||||||
CreditXgxf::getCompanyId,
|
CreditXgxf::getCompanyId,
|
||||||
CreditXgxf::setCompanyId,
|
CreditXgxf::setCompanyId,
|
||||||
|
CreditXgxf::getHasData,
|
||||||
|
CreditXgxf::setHasData,
|
||||||
CreditXgxf::getTenantId,
|
CreditXgxf::getTenantId,
|
||||||
CreditXgxf::new
|
CreditXgxf::new
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -59,6 +59,9 @@ public class CreditAdministrativeLicense implements Serializable {
|
|||||||
@Schema(description = "数据来源单位")
|
@Schema(description = "数据来源单位")
|
||||||
private String dataSourceUnit;
|
private String dataSourceUnit;
|
||||||
|
|
||||||
|
@Schema(description = "是否有数据")
|
||||||
|
private Boolean hasData;
|
||||||
|
|
||||||
@Schema(description = "备注")
|
@Schema(description = "备注")
|
||||||
private String comments;
|
private String comments;
|
||||||
|
|
||||||
|
|||||||
@@ -46,6 +46,9 @@ public class CreditBankruptcy implements Serializable {
|
|||||||
@Schema(description = "公开日期")
|
@Schema(description = "公开日期")
|
||||||
private String publicDate;
|
private String publicDate;
|
||||||
|
|
||||||
|
@Schema(description = "是否有数据")
|
||||||
|
private Boolean hasData;
|
||||||
|
|
||||||
@Schema(description = "备注")
|
@Schema(description = "备注")
|
||||||
private String comments;
|
private String comments;
|
||||||
|
|
||||||
|
|||||||
@@ -46,6 +46,9 @@ public class CreditBranch implements Serializable {
|
|||||||
@Schema(description = "状态")
|
@Schema(description = "状态")
|
||||||
private String statusText;
|
private String statusText;
|
||||||
|
|
||||||
|
@Schema(description = "是否有数据")
|
||||||
|
private Boolean hasData;
|
||||||
|
|
||||||
@Schema(description = "备注")
|
@Schema(description = "备注")
|
||||||
private String comments;
|
private String comments;
|
||||||
|
|
||||||
|
|||||||
@@ -73,6 +73,9 @@ public class CreditBreachOfTrust implements Serializable {
|
|||||||
@TableField(exist = false)
|
@TableField(exist = false)
|
||||||
private String companyName;
|
private String companyName;
|
||||||
|
|
||||||
|
@Schema(description = "是否有数据")
|
||||||
|
private Boolean hasData;
|
||||||
|
|
||||||
@Schema(description = "备注")
|
@Schema(description = "备注")
|
||||||
private String comments;
|
private String comments;
|
||||||
|
|
||||||
|
|||||||
@@ -70,6 +70,9 @@ public class CreditCaseFiling implements Serializable {
|
|||||||
@TableField(exist = false)
|
@TableField(exist = false)
|
||||||
private String companyName;
|
private String companyName;
|
||||||
|
|
||||||
|
@Schema(description = "是否有数据")
|
||||||
|
private Boolean hasData;
|
||||||
|
|
||||||
@Schema(description = "备注")
|
@Schema(description = "备注")
|
||||||
private String comments;
|
private String comments;
|
||||||
|
|
||||||
|
|||||||
@@ -65,6 +65,9 @@ public class CreditCompetitor implements Serializable {
|
|||||||
@TableField(exist = false)
|
@TableField(exist = false)
|
||||||
private String mainCompanyName;
|
private String mainCompanyName;
|
||||||
|
|
||||||
|
@Schema(description = "是否有数据")
|
||||||
|
private Boolean hasData;
|
||||||
|
|
||||||
@Schema(description = "备注")
|
@Schema(description = "备注")
|
||||||
private String comments;
|
private String comments;
|
||||||
|
|
||||||
|
|||||||
@@ -70,6 +70,9 @@ public class CreditCourtAnnouncement implements Serializable {
|
|||||||
@TableField(exist = false)
|
@TableField(exist = false)
|
||||||
private String companyName;
|
private String companyName;
|
||||||
|
|
||||||
|
@Schema(description = "是否有数据")
|
||||||
|
private Boolean hasData;
|
||||||
|
|
||||||
@Schema(description = "备注")
|
@Schema(description = "备注")
|
||||||
private String comments;
|
private String comments;
|
||||||
|
|
||||||
|
|||||||
@@ -70,6 +70,9 @@ public class CreditCourtSession implements Serializable {
|
|||||||
@TableField(exist = false)
|
@TableField(exist = false)
|
||||||
private String companyName;
|
private String companyName;
|
||||||
|
|
||||||
|
@Schema(description = "是否有数据")
|
||||||
|
private Boolean hasData;
|
||||||
|
|
||||||
@Schema(description = "备注")
|
@Schema(description = "备注")
|
||||||
private String comments;
|
private String comments;
|
||||||
|
|
||||||
|
|||||||
@@ -55,6 +55,9 @@ public class CreditCustomer implements Serializable {
|
|||||||
@TableField(exist = false)
|
@TableField(exist = false)
|
||||||
private String companyName;
|
private String companyName;
|
||||||
|
|
||||||
|
@Schema(description = "是否有数据")
|
||||||
|
private Boolean hasData;
|
||||||
|
|
||||||
@Schema(description = "备注")
|
@Schema(description = "备注")
|
||||||
private String comments;
|
private String comments;
|
||||||
|
|
||||||
|
|||||||
@@ -71,6 +71,9 @@ public class CreditDeliveryNotice implements Serializable {
|
|||||||
@TableField(exist = false)
|
@TableField(exist = false)
|
||||||
private String companyName;
|
private String companyName;
|
||||||
|
|
||||||
|
@Schema(description = "是否有数据")
|
||||||
|
private Boolean hasData;
|
||||||
|
|
||||||
@Schema(description = "备注")
|
@Schema(description = "备注")
|
||||||
private String comments;
|
private String comments;
|
||||||
|
|
||||||
|
|||||||
@@ -82,6 +82,9 @@ public class CreditExternal implements Serializable {
|
|||||||
@TableField(exist = false)
|
@TableField(exist = false)
|
||||||
private String companyName;
|
private String companyName;
|
||||||
|
|
||||||
|
@Schema(description = "是否有数据")
|
||||||
|
private Boolean hasData;
|
||||||
|
|
||||||
@Schema(description = "备注")
|
@Schema(description = "备注")
|
||||||
private String comments;
|
private String comments;
|
||||||
|
|
||||||
|
|||||||
@@ -64,6 +64,9 @@ public class CreditFinalVersion implements Serializable {
|
|||||||
@TableField(exist = false)
|
@TableField(exist = false)
|
||||||
private String companyName;
|
private String companyName;
|
||||||
|
|
||||||
|
@Schema(description = "是否有数据")
|
||||||
|
private Boolean hasData;
|
||||||
|
|
||||||
@Schema(description = "备注")
|
@Schema(description = "备注")
|
||||||
private String comments;
|
private String comments;
|
||||||
|
|
||||||
|
|||||||
@@ -70,6 +70,9 @@ public class CreditGqdj implements Serializable {
|
|||||||
@TableField(exist = false)
|
@TableField(exist = false)
|
||||||
private String companyName;
|
private String companyName;
|
||||||
|
|
||||||
|
@Schema(description = "是否有数据")
|
||||||
|
private Boolean hasData;
|
||||||
|
|
||||||
@Schema(description = "备注")
|
@Schema(description = "备注")
|
||||||
private String comments;
|
private String comments;
|
||||||
|
|
||||||
|
|||||||
@@ -40,6 +40,9 @@ public class CreditHistoricalLegalPerson implements Serializable {
|
|||||||
@Schema(description = "链接")
|
@Schema(description = "链接")
|
||||||
private String url;
|
private String url;
|
||||||
|
|
||||||
|
@Schema(description = "是否有数据")
|
||||||
|
private Boolean hasData;
|
||||||
|
|
||||||
@Schema(description = "备注")
|
@Schema(description = "备注")
|
||||||
private String comments;
|
private String comments;
|
||||||
|
|
||||||
|
|||||||
@@ -65,6 +65,9 @@ public class CreditJudgmentDebtor implements Serializable {
|
|||||||
@TableField(exist = false)
|
@TableField(exist = false)
|
||||||
private String companyName;
|
private String companyName;
|
||||||
|
|
||||||
|
@Schema(description = "是否有数据")
|
||||||
|
private Boolean hasData;
|
||||||
|
|
||||||
@Schema(description = "备注")
|
@Schema(description = "备注")
|
||||||
private String comments;
|
private String comments;
|
||||||
|
|
||||||
|
|||||||
@@ -73,6 +73,9 @@ public class CreditJudicialDocument implements Serializable {
|
|||||||
@TableField(exist = false)
|
@TableField(exist = false)
|
||||||
private String companyName;
|
private String companyName;
|
||||||
|
|
||||||
|
@Schema(description = "是否有数据")
|
||||||
|
private Boolean hasData;
|
||||||
|
|
||||||
@Schema(description = "备注")
|
@Schema(description = "备注")
|
||||||
private String comments;
|
private String comments;
|
||||||
|
|
||||||
|
|||||||
@@ -86,6 +86,9 @@ public class CreditJudiciary implements Serializable {
|
|||||||
@TableField(exist = false)
|
@TableField(exist = false)
|
||||||
private String companyName;
|
private String companyName;
|
||||||
|
|
||||||
|
@Schema(description = "是否有数据")
|
||||||
|
private Boolean hasData;
|
||||||
|
|
||||||
@Schema(description = "备注")
|
@Schema(description = "备注")
|
||||||
private String comments;
|
private String comments;
|
||||||
|
|
||||||
|
|||||||
@@ -70,6 +70,9 @@ public class CreditMediation implements Serializable {
|
|||||||
@TableField(exist = false)
|
@TableField(exist = false)
|
||||||
private String companyName;
|
private String companyName;
|
||||||
|
|
||||||
|
@Schema(description = "是否有数据")
|
||||||
|
private Boolean hasData;
|
||||||
|
|
||||||
@Schema(description = "备注")
|
@Schema(description = "备注")
|
||||||
private String comments;
|
private String comments;
|
||||||
|
|
||||||
|
|||||||
@@ -194,6 +194,9 @@ public class CreditNearbyCompany implements Serializable {
|
|||||||
@Schema(description = "是否小微企业")
|
@Schema(description = "是否小微企业")
|
||||||
private String smallEnterprise;
|
private String smallEnterprise;
|
||||||
|
|
||||||
|
@Schema(description = "是否有数据")
|
||||||
|
private Boolean hasData;
|
||||||
|
|
||||||
@Schema(description = "备注")
|
@Schema(description = "备注")
|
||||||
private String comments;
|
private String comments;
|
||||||
|
|
||||||
|
|||||||
@@ -58,6 +58,9 @@ public class CreditPatent implements Serializable {
|
|||||||
@Schema(description = "链接")
|
@Schema(description = "链接")
|
||||||
private String url;
|
private String url;
|
||||||
|
|
||||||
|
@Schema(description = "是否有数据")
|
||||||
|
private Boolean hasData;
|
||||||
|
|
||||||
@Schema(description = "备注")
|
@Schema(description = "备注")
|
||||||
private String comments;
|
private String comments;
|
||||||
|
|
||||||
|
|||||||
@@ -54,6 +54,9 @@ public class CreditRiskRelation implements Serializable {
|
|||||||
@TableField(exist = false)
|
@TableField(exist = false)
|
||||||
private String companyName;
|
private String companyName;
|
||||||
|
|
||||||
|
@Schema(description = "是否有数据")
|
||||||
|
private Boolean hasData;
|
||||||
|
|
||||||
@Schema(description = "备注")
|
@Schema(description = "备注")
|
||||||
private String comments;
|
private String comments;
|
||||||
|
|
||||||
|
|||||||
@@ -55,6 +55,9 @@ public class CreditSupplier implements Serializable {
|
|||||||
@TableField(exist = false)
|
@TableField(exist = false)
|
||||||
private String companyName;
|
private String companyName;
|
||||||
|
|
||||||
|
@Schema(description = "是否有数据")
|
||||||
|
private Boolean hasData;
|
||||||
|
|
||||||
@Schema(description = "备注")
|
@Schema(description = "备注")
|
||||||
private String comments;
|
private String comments;
|
||||||
|
|
||||||
|
|||||||
@@ -55,6 +55,9 @@ public class CreditSuspectedRelationship implements Serializable {
|
|||||||
@Schema(description = "链接")
|
@Schema(description = "链接")
|
||||||
private String url;
|
private String url;
|
||||||
|
|
||||||
|
@Schema(description = "是否有数据")
|
||||||
|
private Boolean hasData;
|
||||||
|
|
||||||
@Schema(description = "备注")
|
@Schema(description = "备注")
|
||||||
private String comments;
|
private String comments;
|
||||||
|
|
||||||
|
|||||||
@@ -82,6 +82,9 @@ public class CreditUser implements Serializable {
|
|||||||
@TableField(exist = false)
|
@TableField(exist = false)
|
||||||
private String companyName;
|
private String companyName;
|
||||||
|
|
||||||
|
@Schema(description = "是否有数据")
|
||||||
|
private Boolean hasData;
|
||||||
|
|
||||||
@Schema(description = "备注")
|
@Schema(description = "备注")
|
||||||
private String comments;
|
private String comments;
|
||||||
|
|
||||||
|
|||||||
@@ -82,6 +82,9 @@ public class CreditXgxf implements Serializable {
|
|||||||
@TableField(exist = false)
|
@TableField(exist = false)
|
||||||
private String companyName;
|
private String companyName;
|
||||||
|
|
||||||
|
@Schema(description = "是否有数据")
|
||||||
|
private Boolean hasData;
|
||||||
|
|
||||||
@Schema(description = "备注")
|
@Schema(description = "备注")
|
||||||
private String comments;
|
private String comments;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user