1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.dy.pipIrrGlobal.voSt;
|
| import com.fasterxml.jackson.annotation.JsonFormat;
| import lombok.Data;
|
| /**
| * @Author: liurunyu
| * @Date: 2024/7/24 14:16
| * @Description 以取水口统计取水量
| */
| @Data
| public class VoIntakeAmountStatistics {
| public Long intakeId ;
| @JsonFormat(shape = JsonFormat.Shape.NUMBER_FLOAT, pattern="0.00" )
| public Double amount;
| }
|
|