无关风月
2024-09-11 68d6a3d45e0cf9faf6ab0bc26f8bde4075c3567a
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;
 
 
}