nidapeng
2024-04-09 1bae832aad1c0f3bcb2a16d4952349d915e6453b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.doumee.dao.business.vo;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * @author RenKang
 */
@Data
public class CountCyclePriceVO {
 
    @ApiModelProperty(value = "总金额", example = "1")
    private BigDecimal cyclePrice;
 
    @ApiModelProperty(value = "生效止期")
    private Date endDate;
 
}