package cn.iocoder.yudao.module.product.convert.brand; import cn.iocoder.yudao.framework.common.pojo.PageResult; import cn.iocoder.yudao.module.product.controller.admin.brand.vo.ProductBrandCreateReqVO; import cn.iocoder.yudao.module.product.controller.admin.brand.vo.ProductBrandRespVO; import cn.iocoder.yudao.module.product.controller.admin.brand.vo.ProductBrandSimpleRespVO; import cn.iocoder.yudao.module.product.controller.admin.brand.vo.ProductBrandUpdateReqVO; import cn.iocoder.yudao.module.product.dal.dataobject.brand.ProductBrandDO; import org.mapstruct.Mapper; import org.mapstruct.factory.Mappers; import java.util.List; /** * 品牌 Convert * * @author 芋道源码 */ @Mapper public interface ProductBrandConvert { ProductBrandConvert INSTANCE = Mappers.getMapper(ProductBrandConvert.class); ProductBrandDO convert(ProductBrandCreateReqVO bean); ProductBrandDO convert(ProductBrandUpdateReqVO bean); ProductBrandRespVO convert(ProductBrandDO bean); List convertList1(List list); List convertList(List list); PageResult convertPage(PageResult page); }