xuhy
2024-08-09 83d4fd30a2cbc8d6d32f034a3eed3d7a73ae55ea
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.ruoyi.chargingPile.api.vo;
 
import com.ruoyi.chargingPile.api.model.TChargingGun;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value="TChargingGunVO对象", description="充电枪")
public class TChargingGunVO extends TChargingGun {
 
    @ApiModelProperty(value = "策略名称")
    private String strategyName;
 
}