package cn.iocoder.yudao.module.mes.controller.admin.pd.basedata.vo; import cn.iocoder.yudao.framework.common.pojo.PageParam; import io.swagger.v3.oas.annotations.media.Schema; import lombok.Data; import lombok.EqualsAndHashCode; import lombok.ToString; @Schema(description = "管理后台 - 定价标准分页 Request VO") @Data @EqualsAndHashCode(callSuper = true) @ToString(callSuper = true) public class MesPdPriceStandardPageReqVO extends PageParam { @Schema(description = "定价对象类型(1服务套餐/2电压等级/3用电类型)", example = "1") private Integer objectType; @Schema(description = "定价对象ID") private Long objectId; @Schema(description = "启用状态(1启用/0禁用)", example = "1") private Integer status; }