PensionServiceDTO.java 1.89 KB
Newer Older
mengmeng's avatar
mengmeng committed
1 2
package io.hmit.modules.serviceOrder.dto;

3
import com.baomidou.mybatisplus.annotation.TableField;
lings's avatar
lings committed
4 5
import io.hmit.common.utils.TreeNode;
import io.hmit.modules.sys.dto.SysMenuDTO;
mengmeng's avatar
mengmeng committed
6 7 8 9 10 11 12 13
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;

import java.io.Serializable;
import java.util.Date;

import java.math.BigDecimal;
14
import java.util.List;
mengmeng's avatar
mengmeng committed
15 16 17 18 19 20 21 22 23

/**
 * 服务表
 *
 * @author zsh 408538940@qq.com
 * @since 1.0.0 2021-01-26
 */
@Data
@ApiModel(value = "服务表")
lings's avatar
lings committed
24
public class PensionServiceDTO extends TreeNode<PensionServiceDTO> implements Serializable {
mengmeng's avatar
mengmeng committed
25 26 27 28 29 30
    private static final long serialVersionUID = 1L;

	@ApiModelProperty(value = "id")
	private Long id;

	@ApiModelProperty(value = "服务名称")
lings's avatar
lings committed
31
	private String serviceName;
mengmeng's avatar
mengmeng committed
32

33 34 35
	@ApiModelProperty(value = "服务内容介绍")
	private String serviceContent;

36 37
	@ApiModelProperty(value = "服务父类id")
	private Long pid;
mengmeng's avatar
mengmeng committed
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77

	@ApiModelProperty(value = "排序")
	private Integer sort;

	@ApiModelProperty(value = "首页图标地址")
	private String icon;

	@ApiModelProperty(value = "详情页大图地址")
	private String detailPicture;

	@ApiModelProperty(value = "价格")
	private BigDecimal price;

	@ApiModelProperty(value = "积分值")
	private Integer giftPoint;

	@ApiModelProperty(value = "服务次数")
	private Integer timesNum;

	@ApiModelProperty(value = "服务时间")
	private String serviceTime;

	@ApiModelProperty(value = "备注")
	private String remark;

	@ApiModelProperty(value = "部门ID")
	private Long deptId;

	@ApiModelProperty(value = "创建者")
	private Long creator;

	@ApiModelProperty(value = "创建时间")
	private Date createDate;

	@ApiModelProperty(value = "更新者")
	private Long updater;

	@ApiModelProperty(value = "更新时间")
	private Date updateDate;

78 79 80
	// 附件
	@TableField(exist = false)
	private List<PensionServiceDocumentDTO> pensionServiceDocumentDTOList;
mengmeng's avatar
mengmeng committed
81

82
}