Merge remote-tracking branch 'origin/master'

new
chenqp 1 year ago
commit e369bbd532

@ -2,6 +2,7 @@ package cn.iocoder.yudao.framework.common.util.date;
import cn.hutool.core.date.LocalDateTimeUtil;
import java.text.SimpleDateFormat;
import java.time.*;
import java.util.Calendar;
import java.util.Date;
@ -26,6 +27,7 @@ public class DateUtils {
public static final String FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND = "yyyy-MM-dd HH:mm:ss";
public static final String FORMAT_HOUR_MINUTE_SECOND = "HH:mm:ss";
public static final String FORMAT_HOUR_MINUT = "HHmmss";
/**
* LocalDateTime Date
@ -170,4 +172,13 @@ public class DateUtils {
return LocalDateTimeUtil.isSameDay(date, LocalDateTime.now());
}
/**
*
* @param pattern
* @return
*/
public static String dateToStr(String pattern,Date date){
SimpleDateFormat sdf = new SimpleDateFormat(pattern);
return sdf.format(date);
}
}

@ -19,5 +19,25 @@
<description>
报销系统业务模块
</description>
<dependencies>
<dependency>
<groupId>com.baidu.aip</groupId>
<artifactId>java-sdk</artifactId>
<version>4.8.0</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.6</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.80</version>
</dependency>
</dependencies>
</project>

@ -15,4 +15,5 @@ public interface ErrorCodeConstants {
ErrorCode FEE_MANAGE_NOT_EXISTS = new ErrorCode(200500, "费用控制不存在");
ErrorCode CUSTOMER_COMPANY_NOT_EXISTS = new ErrorCode(200600, "客户公司不存在");
ErrorCode EXPENSE_CLAIM_NOT_EXISTS = new ErrorCode(200700, "报销单不存在");
ErrorCode SUPPLIER_COMPANY_NOT_EXISTS = new ErrorCode(202300, "供应商信息不存在");
}

@ -0,0 +1,116 @@
package cn.iocoder.yudao.module.bs.controller.admin.suppliercompany;
import cn.iocoder.yudao.module.bs.utils.BusinessLicense;
import org.springframework.web.bind.annotation.*;
import javax.annotation.Resource;
import org.springframework.validation.annotation.Validated;
import org.springframework.security.access.prepost.PreAuthorize;
import io.swagger.v3.oas.annotations.tags.Tag;
import io.swagger.v3.oas.annotations.Parameter;
import io.swagger.v3.oas.annotations.Operation;
import javax.validation.constraints.*;
import javax.validation.*;
import javax.servlet.http.*;
import java.util.*;
import java.io.IOException;
import cn.iocoder.yudao.framework.common.pojo.PageResult;
import cn.iocoder.yudao.framework.common.pojo.CommonResult;
import static cn.iocoder.yudao.framework.common.pojo.CommonResult.success;
import cn.iocoder.yudao.framework.excel.core.util.ExcelUtils;
import cn.iocoder.yudao.framework.operatelog.core.annotations.OperateLog;
import static cn.iocoder.yudao.framework.operatelog.core.enums.OperateTypeEnum.*;
import static cn.iocoder.yudao.module.bs.utils.BaiduOcrHandler.handleBusinessLicense;
import cn.iocoder.yudao.module.bs.controller.admin.suppliercompany.vo.*;
import cn.iocoder.yudao.module.bs.dal.dataobject.suppliercompany.SupplierCompanyDO;
import cn.iocoder.yudao.module.bs.convert.suppliercompany.SupplierCompanyConvert;
import cn.iocoder.yudao.module.bs.service.suppliercompany.SupplierCompanyService;
import org.springframework.web.multipart.MultipartFile;
@Tag(name = "管理后台 - 供应商信息")
@RestController
@RequestMapping("/bs/supplier-company")
@Validated
public class SupplierCompanyController {
@Resource
private SupplierCompanyService supplierCompanyService;
@PostMapping("/buildBusinessLicense")
@Operation(summary = "百度云营业执照识别")
@PreAuthorize("@ss.hasPermission('bs:supplier-company:create')")
public CommonResult<BusinessLicense> buildBusinessLicense(MultipartFile file) {
try {
return success(handleBusinessLicense(file));
} catch (Exception e) {
throw new RuntimeException(e);
}
}
@PostMapping("/create")
@Operation(summary = "创建供应商信息")
@PreAuthorize("@ss.hasPermission('bs:supplier-company:create')")
public CommonResult<Long> createSupplierCompany(@Valid @RequestBody SupplierCompanyCreateReqVO createReqVO) {
return success(supplierCompanyService.createSupplierCompany(createReqVO));
}
@PutMapping("/update")
@Operation(summary = "更新供应商信息")
@PreAuthorize("@ss.hasPermission('bs:supplier-company:update')")
public CommonResult<Boolean> updateSupplierCompany(@Valid @RequestBody SupplierCompanyUpdateReqVO updateReqVO) {
supplierCompanyService.updateSupplierCompany(updateReqVO);
return success(true);
}
@DeleteMapping("/delete")
@Operation(summary = "删除供应商信息")
@Parameter(name = "id", description = "编号", required = true)
@PreAuthorize("@ss.hasPermission('bs:supplier-company:delete')")
public CommonResult<Boolean> deleteSupplierCompany(@RequestParam("id") Long id) {
supplierCompanyService.deleteSupplierCompany(id);
return success(true);
}
@GetMapping("/get")
@Operation(summary = "获得供应商信息")
@Parameter(name = "id", description = "编号", required = true, example = "1024")
@PreAuthorize("@ss.hasPermission('bs:supplier-company:query')")
public CommonResult<SupplierCompanyRespVO> getSupplierCompany(@RequestParam("id") Long id) {
SupplierCompanyDO supplierCompany = supplierCompanyService.getSupplierCompany(id);
return success(SupplierCompanyConvert.INSTANCE.convert(supplierCompany));
}
@GetMapping("/list")
@Operation(summary = "获得供应商信息列表")
@Parameter(name = "ids", description = "编号列表", required = true, example = "1024,2048")
@PreAuthorize("@ss.hasPermission('bs:supplier-company:query')")
public CommonResult<List<SupplierCompanyRespVO>> getSupplierCompanyList(@RequestParam("ids") Collection<Long> ids) {
List<SupplierCompanyDO> list = supplierCompanyService.getSupplierCompanyList(ids);
return success(SupplierCompanyConvert.INSTANCE.convertList(list));
}
@GetMapping("/page")
@Operation(summary = "获得供应商信息分页")
@PreAuthorize("@ss.hasPermission('bs:supplier-company:query')")
public CommonResult<PageResult<SupplierCompanyRespVO>> getSupplierCompanyPage(@Valid SupplierCompanyPageReqVO pageVO) {
PageResult<SupplierCompanyDO> pageResult = supplierCompanyService.getSupplierCompanyPage(pageVO);
return success(SupplierCompanyConvert.INSTANCE.convertPage(pageResult));
}
@GetMapping("/export-excel")
@Operation(summary = "导出供应商信息 Excel")
@PreAuthorize("@ss.hasPermission('bs:supplier-company:export')")
@OperateLog(type = EXPORT)
public void exportSupplierCompanyExcel(@Valid SupplierCompanyExportReqVO exportReqVO,
HttpServletResponse response) throws IOException {
List<SupplierCompanyDO> list = supplierCompanyService.getSupplierCompanyList(exportReqVO);
// 导出 Excel
List<SupplierCompanyExcelVO> datas = SupplierCompanyConvert.INSTANCE.convertList02(list);
ExcelUtils.write(response, "供应商信息.xls", "数据", SupplierCompanyExcelVO.class, datas);
}
}

@ -0,0 +1,90 @@
package cn.iocoder.yudao.module.bs.controller.admin.suppliercompany.vo;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.*;
import java.util.*;
import java.time.LocalDateTime;
import java.time.LocalDateTime;
import java.time.LocalDateTime;
import java.time.LocalDateTime;
import javax.validation.constraints.*;
import org.springframework.format.annotation.DateTimeFormat;
import static cn.iocoder.yudao.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND;
/**
* Base VO VO 使
* VO Swagger
*/
@Data
public class SupplierCompanyBaseVO {
@Schema(description = "供应商企业名称", requiredMode = Schema.RequiredMode.REQUIRED)
@NotNull(message = "供应商企业名称不能为空")
private String companyAme;
@Schema(description = "供应商编码", requiredMode = Schema.RequiredMode.REQUIRED)
// @NotNull(message = "供应商编码不能为空")
private String companyNumber;
@Schema(description = "企业性质", requiredMode = Schema.RequiredMode.REQUIRED, example = "2")
@NotNull(message = "企业性质不能为空")
private Integer companyType;
@Schema(description = "法人代表", requiredMode = Schema.RequiredMode.REQUIRED)
@NotNull(message = "法人代表不能为空")
private String legalPerson;
@Schema(description = "联系方式", requiredMode = Schema.RequiredMode.REQUIRED)
@NotNull(message = "联系方式不能为空")
private String phone;
@Schema(description = "统一社会信用代码", requiredMode = Schema.RequiredMode.REQUIRED)
@NotNull(message = "统一社会信用代码不能为空")
private String creditCode;
@Schema(description = "企业地址", requiredMode = Schema.RequiredMode.REQUIRED)
@NotNull(message = "企业地址不能为空")
private String address;
@Schema(description = "营业期限(起)", requiredMode = Schema.RequiredMode.REQUIRED)
@NotNull(message = "营业期限(起)不能为空")
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
private LocalDateTime businessStratDate;
@Schema(description = "营业期限(止)", requiredMode = Schema.RequiredMode.REQUIRED)
@NotNull(message = "营业期限(止)不能为空")
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
private LocalDateTime businessEndDate;
@Schema(description = "注册资本(w)", requiredMode = Schema.RequiredMode.REQUIRED)
@NotNull(message = "注册资本(w)不能为空")
private Integer capital;
@Schema(description = "银行户名", requiredMode = Schema.RequiredMode.REQUIRED, example = "李四")
@NotNull(message = "银行户名不能为空")
private String bankName;
@Schema(description = "银行账号", requiredMode = Schema.RequiredMode.REQUIRED)
@NotNull(message = "银行账号不能为空")
private String bankNumber;
@Schema(description = "开户行名称", requiredMode = Schema.RequiredMode.REQUIRED)
@NotNull(message = "开户行名称不能为空")
private String bankOfDeposit;
@Schema(description = "是否注册", requiredMode = Schema.RequiredMode.REQUIRED)
@NotNull(message = "是否注册不能为空")
private Byte isRegister;
@Schema(description = "状态", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
@NotNull(message = "状态不能为空")
private Integer status;
@Schema(description = "备注", example = "随便")
private String remark;
@Schema(description = "附件")
private String files;
}

@ -0,0 +1,14 @@
package cn.iocoder.yudao.module.bs.controller.admin.suppliercompany.vo;
import lombok.*;
import java.util.*;
import io.swagger.v3.oas.annotations.media.Schema;
import javax.validation.constraints.*;
@Schema(description = "管理后台 - 供应商信息创建 Request VO")
@Data
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
public class SupplierCompanyCreateReqVO extends SupplierCompanyBaseVO {
}

@ -0,0 +1,78 @@
package cn.iocoder.yudao.module.bs.controller.admin.suppliercompany.vo;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.*;
import java.util.*;
import java.time.LocalDateTime;
import java.time.LocalDateTime;
import java.time.LocalDateTime;
import java.time.LocalDateTime;
import com.alibaba.excel.annotation.ExcelProperty;
/**
* Excel VO
*
* @author
*/
@Data
public class SupplierCompanyExcelVO {
@ExcelProperty("主键")
private Long id;
@ExcelProperty("供应商企业名称")
private String companyAme;
@ExcelProperty("供应商编码")
private String companyNumber;
@ExcelProperty("企业性质")
private Integer companyType;
@ExcelProperty("法人代表")
private String legalPerson;
@ExcelProperty("联系方式")
private String phone;
@ExcelProperty("统一社会信用代码")
private String creditCode;
@ExcelProperty("企业地址")
private String address;
@ExcelProperty("营业期限(起)")
private LocalDateTime businessStratDate;
@ExcelProperty("营业期限(止)")
private LocalDateTime businessEndDate;
@ExcelProperty("注册资本(w)")
private Integer capital;
@ExcelProperty("银行户名")
private String bankName;
@ExcelProperty("银行账号")
private String bankNumber;
@ExcelProperty("开户行名称")
private String bankOfDeposit;
@ExcelProperty("是否注册")
private Byte isRegister;
@ExcelProperty("状态")
private Integer status;
@ExcelProperty("备注")
private String remark;
@ExcelProperty("附件")
private String files;
@ExcelProperty("创建时间")
private LocalDateTime createTime;
}

@ -0,0 +1,73 @@
package cn.iocoder.yudao.module.bs.controller.admin.suppliercompany.vo;
import lombok.*;
import java.util.*;
import io.swagger.v3.oas.annotations.media.Schema;
import cn.iocoder.yudao.framework.common.pojo.PageParam;
import java.time.LocalDateTime;
import org.springframework.format.annotation.DateTimeFormat;
import static cn.iocoder.yudao.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND;
@Schema(description = "管理后台 - 供应商信息 Excel 导出 Request VO参数和 SupplierCompanyPageReqVO 是一致的")
@Data
public class SupplierCompanyExportReqVO {
@Schema(description = "供应商企业名称")
private String companyAme;
@Schema(description = "供应商编码")
private String companyNumber;
@Schema(description = "企业性质", example = "2")
private Integer companyType;
@Schema(description = "法人代表")
private String legalPerson;
@Schema(description = "联系方式")
private String phone;
@Schema(description = "统一社会信用代码")
private String creditCode;
@Schema(description = "企业地址")
private String address;
@Schema(description = "营业期限(起)")
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
private LocalDateTime[] businessStratDate;
@Schema(description = "营业期限(止)")
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
private LocalDateTime[] businessEndDate;
@Schema(description = "注册资本(w)")
private Integer capital;
@Schema(description = "银行户名", example = "李四")
private String bankName;
@Schema(description = "银行账号")
private String bankNumber;
@Schema(description = "开户行名称")
private String bankOfDeposit;
@Schema(description = "是否注册")
private Byte isRegister;
@Schema(description = "状态", example = "1")
private Integer status;
@Schema(description = "备注", example = "随便")
private String remark;
@Schema(description = "附件")
private String files;
@Schema(description = "创建时间")
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
private LocalDateTime[] createTime;
}

@ -0,0 +1,75 @@
package cn.iocoder.yudao.module.bs.controller.admin.suppliercompany.vo;
import lombok.*;
import java.util.*;
import io.swagger.v3.oas.annotations.media.Schema;
import cn.iocoder.yudao.framework.common.pojo.PageParam;
import org.springframework.format.annotation.DateTimeFormat;
import java.time.LocalDateTime;
import static cn.iocoder.yudao.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND;
@Schema(description = "管理后台 - 供应商信息分页 Request VO")
@Data
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
public class SupplierCompanyPageReqVO extends PageParam {
@Schema(description = "供应商企业名称")
private String companyAme;
@Schema(description = "供应商编码")
private String companyNumber;
@Schema(description = "企业性质", example = "2")
private Integer companyType;
@Schema(description = "法人代表")
private String legalPerson;
@Schema(description = "联系方式")
private String phone;
@Schema(description = "统一社会信用代码")
private String creditCode;
@Schema(description = "企业地址")
private String address;
@Schema(description = "营业期限(起)")
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
private LocalDateTime[] businessStratDate;
@Schema(description = "营业期限(止)")
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
private LocalDateTime[] businessEndDate;
@Schema(description = "注册资本(w)")
private Integer capital;
@Schema(description = "银行户名", example = "李四")
private String bankName;
@Schema(description = "银行账号")
private String bankNumber;
@Schema(description = "开户行名称")
private String bankOfDeposit;
@Schema(description = "是否注册")
private Byte isRegister;
@Schema(description = "状态", example = "1")
private Integer status;
@Schema(description = "备注", example = "随便")
private String remark;
@Schema(description = "附件")
private String files;
@Schema(description = "创建时间")
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
private LocalDateTime[] createTime;
}

@ -0,0 +1,19 @@
package cn.iocoder.yudao.module.bs.controller.admin.suppliercompany.vo;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.*;
import java.time.LocalDateTime;
@Schema(description = "管理后台 - 供应商信息 Response VO")
@Data
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
public class SupplierCompanyRespVO extends SupplierCompanyBaseVO {
@Schema(description = "主键", requiredMode = Schema.RequiredMode.REQUIRED, example = "14420")
private Long id;
@Schema(description = "创建时间")
private LocalDateTime createTime;
}

@ -0,0 +1,18 @@
package cn.iocoder.yudao.module.bs.controller.admin.suppliercompany.vo;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.*;
import java.util.*;
import javax.validation.constraints.*;
@Schema(description = "管理后台 - 供应商信息更新 Request VO")
@Data
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
public class SupplierCompanyUpdateReqVO extends SupplierCompanyBaseVO {
@Schema(description = "主键", requiredMode = Schema.RequiredMode.REQUIRED, example = "14420")
@NotNull(message = "主键不能为空")
private Long id;
}

@ -0,0 +1,34 @@
package cn.iocoder.yudao.module.bs.convert.suppliercompany;
import java.util.*;
import cn.iocoder.yudao.framework.common.pojo.PageResult;
import org.mapstruct.Mapper;
import org.mapstruct.factory.Mappers;
import cn.iocoder.yudao.module.bs.controller.admin.suppliercompany.vo.*;
import cn.iocoder.yudao.module.bs.dal.dataobject.suppliercompany.SupplierCompanyDO;
/**
* Convert
*
* @author
*/
@Mapper
public interface SupplierCompanyConvert {
SupplierCompanyConvert INSTANCE = Mappers.getMapper(SupplierCompanyConvert.class);
SupplierCompanyDO convert(SupplierCompanyCreateReqVO bean);
SupplierCompanyDO convert(SupplierCompanyUpdateReqVO bean);
SupplierCompanyRespVO convert(SupplierCompanyDO bean);
List<SupplierCompanyRespVO> convertList(List<SupplierCompanyDO> list);
PageResult<SupplierCompanyRespVO> convertPage(PageResult<SupplierCompanyDO> page);
List<SupplierCompanyExcelVO> convertList02(List<SupplierCompanyDO> list);
}

@ -0,0 +1,101 @@
package cn.iocoder.yudao.module.bs.dal.dataobject.suppliercompany;
import lombok.*;
import java.util.*;
import java.time.LocalDateTime;
import java.time.LocalDateTime;
import java.time.LocalDateTime;
import java.time.LocalDateTime;
import com.baomidou.mybatisplus.annotation.*;
import cn.iocoder.yudao.framework.mybatis.core.dataobject.BaseDO;
/**
* DO
*
* @author
*/
@TableName("bs_supplier_company")
@KeySequence("bs_supplier_company_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。
@Data
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class SupplierCompanyDO extends BaseDO {
/**
*
*/
@TableId
private Long id;
/**
*
*/
private String companyAme;
/**
*
*/
private String companyNumber;
/**
*
*/
private Integer companyType;
/**
*
*/
private String legalPerson;
/**
*
*/
private String phone;
/**
*
*/
private String creditCode;
/**
*
*/
private String address;
/**
* ()
*/
private LocalDateTime businessStratDate;
/**
* ()
*/
private LocalDateTime businessEndDate;
/**
* (w)
*/
private Integer capital;
/**
*
*/
private String bankName;
/**
*
*/
private String bankNumber;
/**
*
*/
private String bankOfDeposit;
/**
*
*/
private Byte isRegister;
/**
*
*/
private Integer status;
/**
*
*/
private String remark;
/**
*
*/
private String files;
}

@ -0,0 +1,66 @@
package cn.iocoder.yudao.module.bs.dal.mysql.suppliercompany;
import java.util.*;
import cn.iocoder.yudao.framework.common.pojo.PageResult;
import cn.iocoder.yudao.framework.mybatis.core.query.LambdaQueryWrapperX;
import cn.iocoder.yudao.framework.mybatis.core.mapper.BaseMapperX;
import cn.iocoder.yudao.module.bs.dal.dataobject.suppliercompany.SupplierCompanyDO;
import org.apache.ibatis.annotations.Mapper;
import cn.iocoder.yudao.module.bs.controller.admin.suppliercompany.vo.*;
/**
* Mapper
*
* @author
*/
@Mapper
public interface SupplierCompanyMapper extends BaseMapperX<SupplierCompanyDO> {
default PageResult<SupplierCompanyDO> selectPage(SupplierCompanyPageReqVO reqVO) {
return selectPage(reqVO, new LambdaQueryWrapperX<SupplierCompanyDO>()
.eqIfPresent(SupplierCompanyDO::getCompanyAme, reqVO.getCompanyAme())
.eqIfPresent(SupplierCompanyDO::getCompanyNumber, reqVO.getCompanyNumber())
.eqIfPresent(SupplierCompanyDO::getCompanyType, reqVO.getCompanyType())
.eqIfPresent(SupplierCompanyDO::getLegalPerson, reqVO.getLegalPerson())
.eqIfPresent(SupplierCompanyDO::getPhone, reqVO.getPhone())
.eqIfPresent(SupplierCompanyDO::getCreditCode, reqVO.getCreditCode())
.eqIfPresent(SupplierCompanyDO::getAddress, reqVO.getAddress())
.betweenIfPresent(SupplierCompanyDO::getBusinessStratDate, reqVO.getBusinessStratDate())
.betweenIfPresent(SupplierCompanyDO::getBusinessEndDate, reqVO.getBusinessEndDate())
.eqIfPresent(SupplierCompanyDO::getCapital, reqVO.getCapital())
.likeIfPresent(SupplierCompanyDO::getBankName, reqVO.getBankName())
.eqIfPresent(SupplierCompanyDO::getBankNumber, reqVO.getBankNumber())
.eqIfPresent(SupplierCompanyDO::getBankOfDeposit, reqVO.getBankOfDeposit())
.eqIfPresent(SupplierCompanyDO::getIsRegister, reqVO.getIsRegister())
.eqIfPresent(SupplierCompanyDO::getStatus, reqVO.getStatus())
.eqIfPresent(SupplierCompanyDO::getRemark, reqVO.getRemark())
.eqIfPresent(SupplierCompanyDO::getFiles, reqVO.getFiles())
.betweenIfPresent(SupplierCompanyDO::getCreateTime, reqVO.getCreateTime())
.orderByDesc(SupplierCompanyDO::getId));
}
default List<SupplierCompanyDO> selectList(SupplierCompanyExportReqVO reqVO) {
return selectList(new LambdaQueryWrapperX<SupplierCompanyDO>()
.eqIfPresent(SupplierCompanyDO::getCompanyAme, reqVO.getCompanyAme())
.eqIfPresent(SupplierCompanyDO::getCompanyNumber, reqVO.getCompanyNumber())
.eqIfPresent(SupplierCompanyDO::getCompanyType, reqVO.getCompanyType())
.eqIfPresent(SupplierCompanyDO::getLegalPerson, reqVO.getLegalPerson())
.eqIfPresent(SupplierCompanyDO::getPhone, reqVO.getPhone())
.eqIfPresent(SupplierCompanyDO::getCreditCode, reqVO.getCreditCode())
.eqIfPresent(SupplierCompanyDO::getAddress, reqVO.getAddress())
.betweenIfPresent(SupplierCompanyDO::getBusinessStratDate, reqVO.getBusinessStratDate())
.betweenIfPresent(SupplierCompanyDO::getBusinessEndDate, reqVO.getBusinessEndDate())
.eqIfPresent(SupplierCompanyDO::getCapital, reqVO.getCapital())
.likeIfPresent(SupplierCompanyDO::getBankName, reqVO.getBankName())
.eqIfPresent(SupplierCompanyDO::getBankNumber, reqVO.getBankNumber())
.eqIfPresent(SupplierCompanyDO::getBankOfDeposit, reqVO.getBankOfDeposit())
.eqIfPresent(SupplierCompanyDO::getIsRegister, reqVO.getIsRegister())
.eqIfPresent(SupplierCompanyDO::getStatus, reqVO.getStatus())
.eqIfPresent(SupplierCompanyDO::getRemark, reqVO.getRemark())
.eqIfPresent(SupplierCompanyDO::getFiles, reqVO.getFiles())
.betweenIfPresent(SupplierCompanyDO::getCreateTime, reqVO.getCreateTime())
.orderByDesc(SupplierCompanyDO::getId));
}
}

@ -0,0 +1,70 @@
package cn.iocoder.yudao.module.bs.service.suppliercompany;
import java.util.*;
import javax.validation.*;
import cn.iocoder.yudao.module.bs.controller.admin.suppliercompany.vo.*;
import cn.iocoder.yudao.module.bs.dal.dataobject.suppliercompany.SupplierCompanyDO;
import cn.iocoder.yudao.framework.common.pojo.PageResult;
/**
* Service
*
* @author
*/
public interface SupplierCompanyService {
/**
*
*
* @param createReqVO
* @return
*/
Long createSupplierCompany(@Valid SupplierCompanyCreateReqVO createReqVO);
/**
*
*
* @param updateReqVO
*/
void updateSupplierCompany(@Valid SupplierCompanyUpdateReqVO updateReqVO);
/**
*
*
* @param id
*/
void deleteSupplierCompany(Long id);
/**
*
*
* @param id
* @return
*/
SupplierCompanyDO getSupplierCompany(Long id);
/**
*
*
* @param ids
* @return
*/
List<SupplierCompanyDO> getSupplierCompanyList(Collection<Long> ids);
/**
*
*
* @param pageReqVO
* @return
*/
PageResult<SupplierCompanyDO> getSupplierCompanyPage(SupplierCompanyPageReqVO pageReqVO);
/**
* , Excel
*
* @param exportReqVO
* @return
*/
List<SupplierCompanyDO> getSupplierCompanyList(SupplierCompanyExportReqVO exportReqVO);
}

@ -0,0 +1,134 @@
package cn.iocoder.yudao.module.bs.service.suppliercompany;
import cn.iocoder.yudao.framework.common.util.date.DateUtils;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import org.springframework.validation.annotation.Validated;
import java.util.*;
import cn.iocoder.yudao.module.bs.controller.admin.suppliercompany.vo.*;
import cn.iocoder.yudao.module.bs.dal.dataobject.suppliercompany.SupplierCompanyDO;
import cn.iocoder.yudao.framework.common.pojo.PageResult;
import cn.iocoder.yudao.module.bs.convert.suppliercompany.SupplierCompanyConvert;
import cn.iocoder.yudao.module.bs.dal.mysql.suppliercompany.SupplierCompanyMapper;
import static cn.iocoder.yudao.framework.common.exception.util.ServiceExceptionUtil.exception;
import static cn.iocoder.yudao.module.bs.enums.ErrorCodeConstants.*;
/**
* Service
*
* @author
*/
@Service
@Validated
public class SupplierCompanyServiceImpl implements SupplierCompanyService {
@Resource
private SupplierCompanyMapper supplierCompanyMapper;
@Override
public Long createSupplierCompany(SupplierCompanyCreateReqVO createReqVO) {
// 插入
SupplierCompanyDO supplierCompany = SupplierCompanyConvert.INSTANCE.convert(createReqVO);
String companyNumber = numberCreate();
supplierCompany.setCompanyNumber(companyNumber);
supplierCompanyMapper.insert(supplierCompany);
// 返回
return supplierCompany.getId();
}
@Override
public void updateSupplierCompany(SupplierCompanyUpdateReqVO updateReqVO) {
// 校验存在
validateSupplierCompanyExists(updateReqVO.getId());
// 更新
SupplierCompanyDO updateObj = SupplierCompanyConvert.INSTANCE.convert(updateReqVO);
supplierCompanyMapper.updateById(updateObj);
}
@Override
public void deleteSupplierCompany(Long id) {
// 校验存在
validateSupplierCompanyExists(id);
// 删除
supplierCompanyMapper.deleteById(id);
}
private void validateSupplierCompanyExists(Long id) {
if (supplierCompanyMapper.selectById(id) == null) {
throw exception(SUPPLIER_COMPANY_NOT_EXISTS);
}
}
@Override
public SupplierCompanyDO getSupplierCompany(Long id) {
return supplierCompanyMapper.selectById(id);
}
@Override
public List<SupplierCompanyDO> getSupplierCompanyList(Collection<Long> ids) {
return supplierCompanyMapper.selectBatchIds(ids);
}
@Override
public PageResult<SupplierCompanyDO> getSupplierCompanyPage(SupplierCompanyPageReqVO pageReqVO) {
return supplierCompanyMapper.selectPage(pageReqVO);
}
@Override
public List<SupplierCompanyDO> getSupplierCompanyList(SupplierCompanyExportReqVO exportReqVO) {
return supplierCompanyMapper.selectList(exportReqVO);
}
/**
*
* @return
*/
private String numberCreate(){
long currentTime = System.currentTimeMillis();
Date date = new Date(currentTime);
String companyNumber="gys"+ DateUtils.dateToStr(DateUtils.FORMAT_HOUR_MINUT,date);
Long companyNumberSize = supplierCompanyMapper.selectCount(new QueryWrapper<SupplierCompanyDO>().likeLeft("company_number", companyNumber));
Long l = companyNumberSize + 1L;
int length = String.valueOf(companyNumberSize + 1L).length();
if ((4-length) !=0){
String gys = fillStr("", (4-length), true, "0");
companyNumber=companyNumber+gys+l.intValue();
}else {
companyNumber=companyNumber+l;
}
return companyNumber;
}
private String fillStr(String value, int count, boolean frontORback, String fillChar) {
String rtvalue = value;
if (rtvalue == null) {
rtvalue = "";
for (int i = 0; i < count; i++)
if (frontORback)
rtvalue = String.valueOf(rtvalue)
+ String.valueOf(fillChar);
else
rtvalue = String.valueOf(fillChar)
+ String.valueOf(rtvalue);
} else {
int len = rtvalue.length();
if (len > count) {
rtvalue = rtvalue.substring(0, count);
} else {
int a = count - len;
for (int i = 0; i < a; i++)
if (frontORback)
rtvalue = String.valueOf(rtvalue)
+ String.valueOf(fillChar);
else
rtvalue = String.valueOf(fillChar)
+ String.valueOf(rtvalue);
}
}
return rtvalue;
}
}

@ -0,0 +1,43 @@
package cn.iocoder.yudao.module.bs.utils;
/**
* @author MrFang
* @date 20230815 11:36
*/
public interface BaiduOcrConstant {
/**
*
*/
String CHARSET = "UTF-8";
/**
* API Key
*/
String CLIENT_ID = "YLQSdO65OZjARM8A8ZN62O11";
/**
* Secret Key
*/
String CLIENT_SECRET = "4fU8odNqBDqNk5W3BS0PDrdk20TGV9sO";
/**
* OCR
*/
String ID_CARD_FRONT_URL = "https://aip.baidubce.com/rest/2.0/ocr/v1/idcard";
/**
* OCR
*/
String ID_CARD_MULTI_URL = "https://aip.baidubce.com/rest/2.0/ocr/v1/multi_idcard";
/**
* OCR
*/
String BUSINESS_LICENSE_URL = "https://aip.baidubce.com/rest/2.0/ocr/v1/business_license";
/**
* OCR accessToken
*/
String ACCESS_TOKEN_URL = "https://aip.baidubce.com/oauth/2.0/token";
}

@ -0,0 +1,281 @@
package cn.iocoder.yudao.module.bs.utils;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import com.baidu.aip.auth.DevAuth;
import com.baidu.aip.util.AipClientConfiguration;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.StringUtils;
import org.springframework.web.multipart.MultipartFile;
import java.io.File;
import java.net.URLEncoder;
import java.util.Map;
/**
* @author MrFang
* @date 20230815 11:36
*/
@Slf4j
public class BaiduOcrHandler {
/**
* OCR
*
* @param idCardFrontImage {@linkplain File}{@linkplain MultipartFile}
* @return IdCard
*/
/* public static IdCard handleFrontIdCard(Object idCardFrontImage) throws Exception {
String accessToken = getAccessToken();
if (StringUtils.isEmpty(accessToken)) {
throw new RuntimeException("获取token失败");
}
String base64ImgParam = getImageBase64Param(idCardFrontImage);
String param = "id_card_side=front&image=" + base64ImgParam;
String jsonStr = HttpUtil.post(BaiduOcrConstant.ID_CARD_FRONT_URL, accessToken, param);
JSONObject jsonObject = JSON.parseObject(jsonStr);
log.info("身份证正面OCR识别结果=>{}", jsonObject);
// 解析身份证正面数据
String status = jsonObject.getString("image_status");
if (!"normal".equals(status)) {
throw new RuntimeException("身份证图片识别失败:"+status );
}
JSONObject wordsResult = jsonObject.getJSONObject("words_result");
if (wordsResult.isEmpty()) {
throw new RuntimeException("没有解析到任何数据");
}
IdCard idCard = new IdCard();
buildIdCard(idCard, wordsResult);
return idCard;
}*/
/**
* OCR
*
* @param idCardFrontImage {@linkplain File}{@linkplain MultipartFile}
* @return IdCard
*/
/* public static IdCard handleMultiIdCard(Object idCardFrontImage) throws Exception {
String accessToken = getAccessToken();
if (StringUtils.isEmpty(accessToken)) {
throw new RuntimeException("获取token失败");
}
String base64ImgParam = getImageBase64Param(idCardFrontImage);
String param = "image=" + base64ImgParam;
String jsonStr = HttpUtil.post(BaiduOcrConstant.ID_CARD_MULTI_URL, accessToken, param);
JSONObject jsonObject = JSON.parseObject(jsonStr);
log.info("身份证正反面OCR识别结果=>{}", jsonObject);
// 解析正反面
JSONArray wordsResult = jsonObject.getJSONArray("words_result");
if (wordsResult.isEmpty()) {
throw new RuntimeException("没有解析到任何数据");
}
IdCard idCard = new IdCard();
for (Object o : wordsResult) {
JSONObject obj = (JSONObject) o;
JSONObject cardResult = obj.getJSONObject("card_result");
if (cardResult == null) {
continue;
}
buildIdCard(idCard, cardResult);
}
return idCard;
}*/
/**
* OCR
*
* @param businessLicenseImage {@linkplain File}{@linkplain MultipartFile}
* @return IdCard
*/
public static BusinessLicense handleBusinessLicense(Object businessLicenseImage) throws Exception {
String accessToken = getAccessToken();
if (StringUtils.isEmpty(accessToken)) {
throw new RuntimeException("获取token失败");
}
String base64ImgParam = getImageBase64Param(businessLicenseImage);
String param = "detect_direction=true&" + "image=" + base64ImgParam;
String jsonStr = HttpUtil.post(BaiduOcrConstant.BUSINESS_LICENSE_URL, accessToken, param);
JSONObject jsonObject = JSON.parseObject(jsonStr);
// log.info("营业执照OCR识别结果=>{}", jsonObject);
if (!jsonObject.containsKey("words_result")) {
throw new RuntimeException("识别营业执照接口返回信息状态失败");
}
BusinessLicense license = new BusinessLicense();
JSONObject wordsResult = jsonObject.getJSONObject("words_result");
buildBusinessLicense(license, wordsResult);
return license;
}
/**
*
*
* @param idCard
* @param meta
*//*
private static void buildIdCard(IdCard idCard, JSONObject meta) {
for (Map.Entry<String, Object> entry : meta.entrySet()) {
String key = entry.getKey();
String resultStr = entry.getValue().toString();
JSONObject result = JSON.parseObject(resultStr);
String value = result.getString("words");
switch (key) {
case IDCardKeywords.FRONT_NAME:
idCard.setName(value);
break;
case IDCardKeywords.FRONT_SEX:
idCard.setSex(value);
break;
case IDCardKeywords.FRONT_NATION:
idCard.setNation(value);
break;
case IDCardKeywords.FRONT_BIRTH:
idCard.setBirthDate(value);
break;
case IDCardKeywords.FRONT_ADDRESS:
idCard.setAddress(value);
break;
case IDCardKeywords.FRONT_ID:
idCard.setCardNumber(value);
break;
case IDCardKeywords.BACK_SIGN_ORG:
idCard.setSignOrg(value);
break;
case IDCardKeywords.BACK_SIGN_DATE:
idCard.setSignDate(value);
break;
case IDCardKeywords.BACK_EXPIRE:
idCard.setExpiredDate(value);
break;
default:
}
}
}
*/
/**
*
*
* @param license
* @param meta
*/
private static void buildBusinessLicense(BusinessLicense license, JSONObject meta) {
for (Map.Entry<String, Object> entry : meta.entrySet()) {
String key = entry.getKey();
String resultStr = entry.getValue().toString();
JSONObject result = JSON.parseObject(resultStr);
String value = result.getString("words");
switch (key) {
case LicenseKeywords.UNIT_NAME:
license.setUnitName(value);
break;
case LicenseKeywords.UNIT_TYPE:
license.setUnitType(value);
break;
case LicenseKeywords.LEGAL_PERSON:
license.setLegalPerson(value);
break;
case LicenseKeywords.ADDRESS:
license.setAddress(value);
break;
case LicenseKeywords.CODE:
license.setCode(value);
break;
case LicenseKeywords.ID_NUMBER:
license.setIdNumber(value);
break;
case LicenseKeywords.VALIDITY:
license.setValidity(value);
break;
case LicenseKeywords.REGISTERED_CAPITAL:
license.setRegisteredCapital(value);
break;
case LicenseKeywords.COMPANY_CREATE_DATE:
license.setCompanyCreateDate(value);
break;
case LicenseKeywords.LAYOUT:
license.setLayout(value);
break;
case LicenseKeywords.BUSINESS_SCOPE:
license.setBusinessScope(value);
break;
default:
}
}
}
/**
*
*
* @param file FileMultipartFile
* @return
* @throws Exception
*/
private static File transferToFile(Object file) throws Exception {
File img;
if (file instanceof File) {
img = (File) file;
} else if (file instanceof MultipartFile) {
img = FileUtils.multipartFileToFile((MultipartFile) file);
} else {
throw new UnsupportedOperationException("仅支持File或MultipartFile类型的参数");
}
return img;
}
/**
* base64
*
* @param file
* @return
* @throws Exception
*/
private static String getImageBase64Param(Object file) throws Exception {
File img;
if (file instanceof File) {
img = (File) file;
} else if (file instanceof MultipartFile) {
img = FileUtils.multipartFileToFile((MultipartFile) file);
} else {
throw new UnsupportedOperationException("仅支持File或MultipartFile类型的参数");
}
byte[] bytes = FileUtil.readFileByBytes(img);
String encode = Base64Util.encode(bytes);
return URLEncoder.encode(encode, BaiduOcrConstant.CHARSET);
}
/**
* APIaccess_token
* grant_type - client_credentials
* client_id - API Key
* client_secret - Secret Key
*
* @return access_token
*/
public static String getAccessToken() {
try {
org.json.JSONObject jsonObject = DevAuth.oauth(BaiduOcrConstant.CLIENT_ID, BaiduOcrConstant.CLIENT_SECRET, config());
return jsonObject.getString("access_token");
} catch (Exception e) {
log.error(e.getMessage(), e);
}
return null;
}
/**
*
*
*/
private static AipClientConfiguration config() {
AipClientConfiguration config = new AipClientConfiguration();
config.setConnectionTimeoutMillis(60000);
config.setSocketTimeoutMillis(60000);
return config;
}
}

@ -0,0 +1,67 @@
package cn.iocoder.yudao.module.bs.utils;
/**
* @author MrFang
* @date 20230815 11:38
*/
public class Base64Util {
private static final char last2byte = (char) Integer.parseInt("00000011", 2);
private static final char last4byte = (char) Integer.parseInt("00001111", 2);
private static final char last6byte = (char) Integer.parseInt("00111111", 2);
private static final char lead6byte = (char) Integer.parseInt("11111100", 2);
private static final char lead4byte = (char) Integer.parseInt("11110000", 2);
private static final char lead2byte = (char) Integer.parseInt("11000000", 2);
private static final char[] encodeTable = new char[]{'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '+', '/'};
public Base64Util() {
}
public static String encode(byte[] from) {
StringBuilder to = new StringBuilder((int) ((double) from.length * 1.34D) + 3);
int num = 0;
char currentByte = 0;
int i;
for (i = 0; i < from.length; ++i) {
for (num %= 8; num < 8; num += 6) {
switch (num) {
case 0:
currentByte = (char) (from[i] & lead6byte);
currentByte = (char) (currentByte >>> 2);
case 1:
case 3:
case 5:
default:
break;
case 2:
currentByte = (char) (from[i] & last6byte);
break;
case 4:
currentByte = (char) (from[i] & last4byte);
currentByte = (char) (currentByte << 2);
if (i + 1 < from.length) {
currentByte = (char) (currentByte | (from[i + 1] & lead2byte) >>> 6);
}
break;
case 6:
currentByte = (char) (from[i] & last2byte);
currentByte = (char) (currentByte << 4);
if (i + 1 < from.length) {
currentByte = (char) (currentByte | (from[i + 1] & lead4byte) >>> 4);
}
}
to.append(encodeTable[currentByte]);
}
}
if (to.length() % 4 != 0) {
for (i = 4 - to.length() % 4; i > 0; --i) {
to.append("=");
}
}
return to.toString();
}
}

@ -0,0 +1,46 @@
package cn.iocoder.yudao.module.bs.utils;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
/**
* @author MrFang
* @date 20230815 11:37
*/
@Data
public class BusinessLicense {
@Schema(description = "单位名称")
private String unitName;
@Schema(description = "类型")
private String unitType;
@Schema(description = "公司法人")
private String legalPerson;
@Schema(description = "地址")
private String address;
@Schema(description = "有效期")
private String validity;
@Schema(description = "证件编号")
private String idNumber;
@Schema(description = "社会信用代码")
private String code;
@Schema(description = "注册资本")
private String registeredCapital;
@Schema(description = "成立日期")
private String companyCreateDate;
@Schema(description = "组成形式")
private String layout;
@Schema(description = "经营范围")
private String businessScope;
}

@ -0,0 +1,66 @@
package cn.iocoder.yudao.module.bs.utils;
import java.io.*;
/**
* @author MrFang
* @date 20230815 11:39
*/
public class FileUtil {
/**
*
*/
public static String readFileAsString(String filePath) throws IOException {
File file = new File(filePath);
if (!file.exists()) {
throw new FileNotFoundException(filePath);
}
if (file.length() > 1024 * 1024 * 1024) {
throw new IOException("File is too large");
}
StringBuilder sb = new StringBuilder((int) (file.length()));
// 创建字节输入流
FileInputStream fis = new FileInputStream(filePath);
// 创建一个长度为10240的Buffer
byte[] bbuf = new byte[10240];
// 用于保存实际读取的字节数
int hasRead = 0;
while ((hasRead = fis.read(bbuf)) > 0) {
sb.append(new String(bbuf, 0, hasRead));
}
fis.close();
return sb.toString();
}
/**
* byte[]
*/
public static byte[] readFileByBytes(String filePath) throws IOException {
File file = new File(filePath);
if (!file.exists()) {
throw new FileNotFoundException(filePath);
}
return readFileByBytes(file);
}
/**
* byte[]
*/
public static byte[] readFileByBytes(File file) throws IOException {
try (ByteArrayOutputStream bos = new ByteArrayOutputStream((int) file.length())) {
BufferedInputStream in = null;
in = new BufferedInputStream(new FileInputStream(file));
short bufSize = 1024;
byte[] buffer = new byte[bufSize];
int len1;
while (-1 != (len1 = in.read(buffer, 0, bufSize))) {
bos.write(buffer, 0, len1);
}
byte[] var7 = bos.toByteArray();
return var7;
}
}
}

@ -0,0 +1,127 @@
package cn.iocoder.yudao.module.bs.utils;
import org.springframework.core.io.ClassPathResource;
import org.springframework.web.multipart.MultipartFile;
import java.io.*;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.Objects;
/**
* @author MrFang
* @date 20230815 11:38
*/
public class FileUtils {
/**
* classpath
*
* @param fileClassPath classpath
* @return
*/
public static InputStream readFileStreamWithClassPath(String fileClassPath) {
return Thread.currentThread().getContextClassLoader().getResourceAsStream(fileClassPath);
}
/**
* classpath
*
* @param fileClassPath classpath
* @return
*/
public static File readFileWithClassPath(String fileClassPath) throws IOException {
return new ClassPathResource(fileClassPath).getFile();
}
/**
* classpath
*
* @param absoluteFilePath
* @return
*/
public static InputStream readFile(String absoluteFilePath) throws IOException {
return Files.newInputStream(Paths.get(absoluteFilePath));
}
/**
*
*
* @param sourceFilePath
* @param targetFilePath
* @throws IOException
*/
public static void copy(String sourceFilePath, String targetFilePath) throws IOException {
Files.copy(Paths.get(sourceFilePath), Paths.get(targetFilePath));
}
/**
* MultipartFileFile
* <p>
* 使java 使 MultipartFile.transferto()
*
* @param multipartFile
* @return
*/
public static File transferToFile(MultipartFile multipartFile) {
File file = null;
try {
String originalFilename = multipartFile.getOriginalFilename();
String[] filename = originalFilename.split("\\.");
file = File.createTempFile(filename[0], filename[1]);
multipartFile.transferTo(file);
file.deleteOnExit();
} catch (IOException e) {
e.printStackTrace();
}
return file;
}
/**
* MultipartFile File
*
* @param file
* @throws Exception
*/
public static File multipartFileToFile(MultipartFile file) throws Exception {
File toFile = null;
InputStream ins;
ins = file.getInputStream();
toFile = new File(Objects.requireNonNull(file.getOriginalFilename()));
inputStreamToFile(ins, toFile);
ins.close();
return toFile;
}
/**
*
* @param ins
* @param file
*/
private static void inputStreamToFile(InputStream ins, File file) {
try {
OutputStream os = new FileOutputStream(file);
int bytesRead = 0;
byte[] buffer = new byte[8192];
while ((bytesRead = ins.read(buffer, 0, 8192)) != -1) {
os.write(buffer, 0, bytesRead);
}
os.close();
ins.close();
} catch (Exception e) {
e.printStackTrace();
}
}
/**
*
* @param file
*/
public static boolean deleteTempFile(File file) {
if (file != null) {
File del = new File(file.toURI());
return del.delete();
}
return false;
}
}

@ -0,0 +1,77 @@
package cn.iocoder.yudao.module.bs.utils;
import java.io.BufferedReader;
import java.io.DataOutputStream;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
import java.util.List;
import java.util.Map;
/**
* @author MrFang
* @date 20230815 11:39
*/
public class HttpUtil {
public static String post(String requestUrl, String accessToken, String params)
throws Exception {
String contentType = "application/x-www-form-urlencoded";
return HttpUtil.post(requestUrl, accessToken, contentType, params);
}
public static String post(String requestUrl, String accessToken, String contentType, String params)
throws Exception {
String encoding = "UTF-8";
if (requestUrl.contains("nlp")) {
encoding = "GBK";
}
return HttpUtil.post(requestUrl, accessToken, contentType, params, encoding);
}
public static String post(String requestUrl, String accessToken, String contentType, String params, String encoding)
throws Exception {
String url = requestUrl + "?access_token=" + accessToken;
return HttpUtil.postGeneralUrl(url, contentType, params, encoding);
}
public static String postGeneralUrl(String generalUrl, String contentType, String params, String encoding)
throws Exception {
URL url = new URL(generalUrl);
// 打开和URL之间的连接
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
connection.setRequestMethod("POST");
// 设置通用的请求属性
connection.setRequestProperty("Content-Type", contentType);
connection.setRequestProperty("Connection", "Keep-Alive");
connection.setUseCaches(false);
connection.setDoOutput(true);
connection.setDoInput(true);
// 得到请求的输出流对象
DataOutputStream out = new DataOutputStream(connection.getOutputStream());
out.write(params.getBytes(encoding));
out.flush();
out.close();
// 建立实际的连接
connection.connect();
// 获取所有响应头字段
Map<String, List<String>> headers = connection.getHeaderFields();
// 遍历所有的响应头字段
for (String key : headers.keySet()) {
System.err.println(key + "--->" + headers.get(key));
}
// 定义 BufferedReader输入流来读取URL的响应
BufferedReader in = null;
in = new BufferedReader(
new InputStreamReader(connection.getInputStream(), encoding));
String result = "";
String getLine;
while ((getLine = in.readLine()) != null) {
result += getLine;
}
in.close();
System.err.println("result:" + result);
return result;
}
}

@ -0,0 +1,41 @@
package cn.iocoder.yudao.module.bs.utils;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
/**
* @author MrFang
* @date 20230815 11:37
*/
@Data
public class IdCard {
@Schema(description = "姓名")
private String name;
@Schema(description = "性别")
private String sex;
@Schema(description = "民族")
private String nation;
@Schema(description = "出生日期")
private String birthDate;
@Schema(description = "住址")
private String address;
@Schema(description = "公民身份号码")
private String cardNumber;
@Schema(description = "签发机关")
private String signOrg;
@Schema(description = "签发日期")
private String signDate;
@Schema(description = "失效日期")
private String expiredDate;
}

@ -0,0 +1,19 @@
package cn.iocoder.yudao.module.bs.utils;
/**
* @author MrFang
* @date 20230815 14:08
*/
public class LicenseKeywords {
public static final String UNIT_NAME = "单位名称";
public static final String BUSINESS_SCOPE = "经营范围";
public static final String LAYOUT = "组成形式";
public static final String UNIT_TYPE = "类型";
public static final String LEGAL_PERSON = "法定代表人";
public static final String ADDRESS = "地址";
public static final String CODE = "社会信用代码";
public static final String ID_NUMBER = "证件编号";
public static final String VALIDITY = "有效期";
public static final String REGISTERED_CAPITAL = "注册资本";
public static final String COMPANY_CREATE_DATE = "成立日期";
}
Loading…
Cancel
Save