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
32
33
34
35
package com.zzg.system.domain.vo;
 
 
import com.fasterxml.jackson.annotation.JsonFormat;
import com.zzg.common.core.domain.entity.state.StateApplyRecord;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.math.BigDecimal;
import java.util.Date;
 
@Data
public class StateApplyRecordVO extends StateApplyRecord {
    private String projectId;
    private String projectName;
    private String projectNo;
    private String applyStatusStr;
    private String applyTypeStr;
    @ApiModelProperty(value = "过渡费标准", example = "10000.50")
    private String transitionFee;
    @ApiModelProperty(value = "发放月份", example = "10000.50")
    private Integer distributionMonths;
    @ApiModelProperty(value = "发放金额", example = "10000.50")
    @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "##0.0000")
    private BigDecimal distributionAmount;
    //启动时间
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date startTime;
 
    private String street;
 
    private String unit;
}