linwe
2023-11-29 59e1a8ff7dfd9af5244ae5448d8af745a9720d13
src/main/java/org/springblade/modules/house/wrapper/HouseLabelWrapper.java
@@ -18,8 +18,9 @@
import org.springblade.core.mp.support.BaseEntityWrapper;
import org.springblade.core.tool.utils.BeanUtil;
import org.springblade.modules.house.entity.UserHouseLabelEntity;
import org.springblade.modules.house.entity.HouseLabelEntity;
import org.springblade.modules.house.vo.HouseLabelVO;
import java.util.Objects;
/**
@@ -28,14 +29,14 @@
 * @author BladeX
 * @since 2023-10-28
 */
public class HouseLabelWrapper extends BaseEntityWrapper<UserHouseLabelEntity, HouseLabelVO>  {
public class HouseLabelWrapper extends BaseEntityWrapper<HouseLabelEntity, HouseLabelVO>  {
   public static HouseLabelWrapper build() {
      return new HouseLabelWrapper();
    }
   @Override
   public HouseLabelVO entityVO(UserHouseLabelEntity houseLabel) {
   public HouseLabelVO entityVO(HouseLabelEntity houseLabel) {
      HouseLabelVO houseLabelVO = Objects.requireNonNull(BeanUtil.copy(houseLabel, HouseLabelVO.class));
      //User createUser = UserCache.getUser(houseLabel.getCreateUser());