21 lines
407 B
Java
21 lines
407 B
Java
package com.muyu.common;
|
|
|
|
import java.math.BigDecimal;
|
|
import java.math.BigInteger;
|
|
|
|
/**
|
|
* @author DongZeLiang
|
|
* @version 1.0
|
|
* @description 系统常量
|
|
* @date 2023/11/15
|
|
*/
|
|
public class SystemConstant {
|
|
|
|
/**
|
|
* 百公里电耗
|
|
*/
|
|
public final static BigDecimal powerConsumption = new BigDecimal(10000);
|
|
|
|
public final static BigDecimal hundredKilometers = new BigDecimal(100);
|
|
}
|