mac
2024-07-02 d7ff801372431e64aee8f68ece4b8532cffb2207
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";
}