shiyunteng
2026-05-27 0527f90adf2aea086af681fb8f3dbf49c0a5ed31
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package com.by4cloud.platformx.business.dto;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.math.BigDecimal;
import java.util.Date;
 
@Data
public class MeterReadRecordAddDTO {
 
    @Schema(description = "关联合同ID")
    private Long contractId;
 
    @Schema(description = "关联标的物ID")
    private Long matterId;
 
    @Schema(description = "合同名称")
    private String contractName;
 
    @Schema(description = "客商名称")
    private String busGuestName;
 
    @Schema(description = "客商ID")
    private Long busGuestId;
 
    @Schema(description = "抄表编号")
    private String meterReadCode;
 
    @Schema(description = "抄表数字")
    private BigDecimal meterReadNum;
 
    @Schema(description = "抄表时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm")
    private Date meterReadTime;
 
    @Schema(description = "抄表单据名称")
    private String meterReadAttNames;
 
    @Schema(description = "抄表单据路径")
    private String meterReadAttPaths;
 
}