Merge remote-tracking branch 'origin/master'
commit
e369bbd532
@ -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,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,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 2023年08月15日 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,67 @@
|
|||||||
|
package cn.iocoder.yudao.module.bs.utils;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author MrFang
|
||||||
|
* @date 2023年08月15日 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 2023年08月15日 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,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 2023年08月15日 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));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* MultipartFile转File
|
||||||
|
* <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 2023年08月15日 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 2023年08月15日 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 2023年08月15日 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…
Reference in New Issue