MrShi
2025-03-12 69a1b3bf45738f048361ee4ccb6bdc64fce35720
server/visits/dmvisit_service/src/main/java/com/doumee/dao/openapi/response/GasByMonthResponse.java
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,28 @@
package com.doumee.dao.openapi.response;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.math.BigDecimal;
/**
 * Created by IntelliJ IDEA.
 *
 * @Author : Rk
 * @create 2023/12/7 11:19
 */
@Data
@ApiModel("本月、上月、去年同月用气量返回参数")
public class GasByMonthResponse {
    @ApiModelProperty(value = "本月用气量(立方米)", example = "1")
    private BigDecimal currentMonth;
    @ApiModelProperty(value = "上个月用气量(立方米)", example = "1")
    private BigDecimal lastMonth;
    @ApiModelProperty(value = "去年同月用气量(立方米)", example = "1")
    private BigDecimal lastYearMonth;
}