WxItemVO.java 420 Bytes
Newer Older
苗卫卫 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
package com.boco.nbd.wios.wx.vo;

import io.swagger.annotations.ApiModelProperty;
import lombok.Data;

import java.math.BigDecimal;

/**
 * @author kevin
 * @create 2020/11/30 15:38
 */
@Data
public class WxItemVO {

    @ApiModelProperty(value = "ID")
    private Integer id;

    @ApiModelProperty(value = "项目名称")
    private String name;

    @ApiModelProperty(value = "费用")
    private BigDecimal fee;
}