yanghb
2024-12-17 1287337fd0b0c156ec79712f9a600ebeffefe3a6
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
package com.zzg.system.domain.bo;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
import org.springframework.web.multipart.MultipartFile;
 
import java.math.BigDecimal;
import java.util.Date;
 
@Data
public class ImportApplyRecordBO {
    private MultipartFile file;
    private String projectId;
    private Integer applyType;
    private String applyId;
 
 
    @ApiModelProperty(value = "过渡费发放截止时间", example = "2024-12-31")
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date transitionFeeEndDate;
    @ApiModelProperty(value = "过渡费发放截止时间", example = "2024-12-31")
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date transitionFeeStartDate;
 
    private BigDecimal appliedAmount;
 
}