PensionServiceExcel.java 1.23 KB
Newer Older
mengmeng's avatar
mengmeng committed
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 47 48 49 50
package io.hmit.modules.serviceOrder.excel;

import cn.afterturn.easypoi.excel.annotation.Excel;
import lombok.Data;

import java.math.BigDecimal;
import java.util.Date;

/**
 * 服务表
 *
 * @author zsh 408538940@qq.com
 * @since 1.0.0 2021-01-26
 */
@Data
public class PensionServiceExcel {
    @Excel(name = "id")
    private Long id;
    @Excel(name = "服务名称")
    private String name;
    @Excel(name = "服务类型")
    private Long serviceTypeId;
    @Excel(name = "排序")
    private Integer sort;
    @Excel(name = "首页图标地址")
    private String icon;
    @Excel(name = "详情页大图地址")
    private String detailPicture;
    @Excel(name = "价格")
    private BigDecimal price;
    @Excel(name = "积分值")
    private Integer giftPoint;
    @Excel(name = "服务次数")
    private Integer timesNum;
    @Excel(name = "服务时间")
    private String serviceTime;
    @Excel(name = "备注")
    private String remark;
    @Excel(name = "部门ID")
    private Long deptId;
    @Excel(name = "创建者")
    private Long creator;
    @Excel(name = "创建时间")
    private Date createDate;
    @Excel(name = "更新者")
    private Long updater;
    @Excel(name = "更新时间")
    private Date updateDate;

}