无关风月
2024-08-19 ff169f9a0417b73f0afac554cf2f9d048ac56c80
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.ruoyi.chargingPile.api.query;
 
import com.ruoyi.common.core.web.page.BasePage;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value="TAccountingStrategyQuery对象", description="计费策略")
public class TAccountingStrategyQuery extends BasePage {
 
    @ApiModelProperty(value = "计费策略名称")
    private String name;
 
}