Pu Zhibing
2025-01-17 9dc82f0523649a2cbf62d26938140c79bca33981
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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;
    @ApiModelProperty(value = "1=待审核一级,2=待审核二级,3=审核通过,4=驳回")
    private Integer auditStatus;
 
 
}