bug修改

This commit is contained in:
lg
2025-10-25 20:05:43 +08:00
parent 25c4eee464
commit f953a96c36
29 changed files with 71 additions and 76 deletions

View File

@ -6,7 +6,7 @@ import java.io.Serial;
@Data
public class XzdCustomerSuppliervo {
public class XzdCustomerSupplierVos {
@Serial
private static final long serialVersionUID = 1L;

View File

@ -1,6 +1,6 @@
package org.dromara.common.core.service;
import org.dromara.common.core.domain.vo.XzdCustomerSuppliervo;
import org.dromara.common.core.domain.vo.XzdCustomerSupplierVos;
public interface XzdCustomerSupplierService {
@ -10,5 +10,5 @@ public interface XzdCustomerSupplierService {
* @param id 主键
* @return 供应商-客户中间
*/
XzdCustomerSuppliervo queryByIdone(Long id);
XzdCustomerSupplierVos queryByIdone(Long id);
}

View File

@ -44,10 +44,10 @@ public interface TransConstant {
String XZD_KHXX_ID_TO_NAME = "khxx_id_to_name";
/**
* 供应商id转名称
*/
String XZD_GYSXX_ID_TO_NAME = "gysxx_id_to_name";
// /**
// * 供应商id转名称
// */
// String XZD_KHXX_ID_TO_NAME = "gysxx_id_to_name";
/**
* 新中大项目id转名称

View File

@ -7,7 +7,7 @@ import org.dromara.common.translation.constant.TransConstant;
import org.dromara.common.translation.core.TranslationInterface;
@AllArgsConstructor
@TranslationType(type = TransConstant.XZD_GYSXX_ID_TO_NAME)
//@TranslationType(type = TransConstant.XZD_KHXX_ID_TO_NAME)
public class XzdSupplierInfoImpl implements TranslationInterface<String> {
private final XzdSupplierInfoService xzdSupplierInfoService;