mac
2024-07-11 4e351a9721f003ed24d90fd09bb6ed10e70dd205
1
2
3
4
5
6
7
8
package com.hdl.photovoltaic.enums;
 
public @interface UnitType {
    String kWp = "kWp";
    String kWh = "kWh";
    String kW = "kW";
    String noValue = "0.00";
}