feat: 添加供应商管理相关功能及数据库表结构

新增供应商名录管理功能,包括合格供应商名录、供应商文件、供应商关联实体等模块。主要变更包括:

1. 添加COMPANY_VENDOR_ENTITY表的CREATOR_ID、MODIFIER_ID和MODIFY_DATE字段
2. 实现供应商同步任务类(VendorClassSyncTask等)
3. 新增供应商相关VO类(VendorApprovedVo、VendorFileVo等)
4. 添加供应商相关Repository接口(VendorRepository、VendorFileRepository等)
5. 实现供应商相关服务类(VendorApprovedService、VendorFileService等)
6. 添加供应商管理界面控制器及皮肤类
7. 新增供应商文件类型枚举和本地化配置
This commit is contained in:
2025-09-23 23:37:04 +08:00
parent 71d3ecab52
commit 9c3306eea3
69 changed files with 349 additions and 366 deletions

View File

@@ -4,17 +4,17 @@ import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Lazy;
import org.springframework.stereotype.Component;
import com.ecep.contract.service.CompanyVendorService;
import com.ecep.contract.vo.CompanyVendorVo;
import com.ecep.contract.service.VendorService;
import com.ecep.contract.vo.VendorVo;
import jakarta.annotation.PostConstruct;
@Lazy
@Component
public class CompanyVendorStringConverter extends EntityStringConverter<CompanyVendorVo> {
public class CompanyVendorStringConverter extends EntityStringConverter<VendorVo> {
@Lazy
@Autowired
private CompanyVendorService service;
private VendorService service;
public CompanyVendorStringConverter() {