分类编码名称转换
parent
88f5003dd4
commit
774057a4fe
@ -1,7 +1,7 @@
|
||||
package com.glxp.udidl.admin.dao.udi;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.glxp.udidl.admin.entity.udi.ProductClassifyEntity;
|
||||
import com.glxp.udidl.admin.entity.udi.ProductClassify;
|
||||
|
||||
public interface ProductClassifyMapper extends BaseMapper<ProductClassifyEntity> {
|
||||
public interface ProductClassifyMapper extends BaseMapper<ProductClassify> {
|
||||
}
|
||||
|
@ -1,10 +1,10 @@
|
||||
package com.glxp.udidl.admin.service.udi;
|
||||
|
||||
import com.glxp.udidl.admin.entity.udi.ProductClassifyEntity;
|
||||
import com.glxp.udidl.admin.entity.udi.ProductClassify;
|
||||
|
||||
public interface ProductClassifyService {
|
||||
|
||||
|
||||
ProductClassifyEntity findByCode(String code, String qxlb);
|
||||
ProductClassify findByCode(String code, String qxlb);
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue