Commit d49b33de authored by huyuchen's avatar huyuchen

户配置代码提交

parent 673f9ae0
...@@ -17,6 +17,7 @@ ...@@ -17,6 +17,7 @@
package com.yifu.cloud.plus.v1.yifu.archives.entity; package com.yifu.cloud.plus.v1.yifu.archives.entity;
import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName; import com.baomidou.mybatisplus.annotation.TableName;
import com.yifu.cloud.plus.v1.yifu.common.mybatis.base.BaseEntity; import com.yifu.cloud.plus.v1.yifu.common.mybatis.base.BaseEntity;
...@@ -99,4 +100,15 @@ public class FddPersonAccount extends BaseEntity { ...@@ -99,4 +100,15 @@ public class FddPersonAccount extends BaseEntity {
@Schema(description ="实名短信发送:0未发送 1已发送") @Schema(description ="实名短信发送:0未发送 1已发送")
private String realMessageFlag; private String realMessageFlag;
@Schema(description ="组织名称")
@TableField(exist = false)
private String companyName;
@Schema(description ="法大大印章ID")
@TableField(exist = false)
private String sealId;
@Schema(description ="印章名称")
@TableField(exist = false)
private String sealName;
} }
...@@ -123,6 +123,17 @@ public class FddSealInfoServiceImpl extends ServiceImpl<FddSealInfoMapper, FddSe ...@@ -123,6 +123,17 @@ public class FddSealInfoServiceImpl extends ServiceImpl<FddSealInfoMapper, FddSe
@Override @Override
public R<String> sealAuth(List<String> id, String fddPersonAccountId) throws ApiException { public R<String> sealAuth(List<String> id, String fddPersonAccountId) throws ApiException {
// //查询机构印章信息
// CompanySealListReq companySealListReq = new CompanySealListReq();
// companySealListReq.setToken(fddUtil.getToken());
// companySealListReq.setSealInfo(1);
// OwnerInfo owner1 = new OwnerInfo();
// owner1.setUnionId("6ecf01effd8647528255a72c9014ce08");
// companySealListReq.setOwner(owner1);
// SealClient sealClient1 = new SealClient(fddUtil.getFadadaApiClient());
// BaseRsp<CompanySealListRsp> rsp1 = sealClient1.companySealList(companySealListReq);
// CompanySealListRsp data1 = rsp1.getData();
for (String sId : id) { for (String sId : id) {
FddSealInfo entity = this.getById(sId); FddSealInfo entity = this.getById(sId);
if (entity == null) { if (entity == null) {
......
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