PensionServiceEntity.java 1.48 KB
Newer Older
1 2 3 4 5 6
package io.hmit.modules.serviceOrder.entity;

import com.baomidou.mybatisplus.annotation.TableName;
import io.hmit.common.entity.BaseEntity;
import lombok.Data;
import lombok.EqualsAndHashCode;
mengmeng's avatar
mengmeng committed
7
import org.apache.ibatis.annotations.Property;
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26

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

/**
 * 服务表
 *
 * @author zsh 408538940@qq.com
 * @since 1.0.0 2021-01-26
 */
@Data
@EqualsAndHashCode(callSuper=false)
@TableName("pension_service")
public class PensionServiceEntity extends BaseEntity {
	private static final long serialVersionUID = 1L;

    /**
     * 服务名称
     */
mengmeng's avatar
mengmeng committed
27 28
//    @Property(value = "name")
	private String serviceName;
29
    /**
30
     * 服务父类ID
31
     */
32
	private Long serviceParentId;
33 34 35 36 37 38 39 40
    /**
     * 排序
     */
	private Integer sort;
    /**
     * 首页图标地址
     */
	private String icon;
mengmeng's avatar
mengmeng committed
41 42 43 44
    /**
     * 是否免费
     */
	private String isFree;
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 78 79 80
    /**
     * 详情页大图地址
     */
	private String detailPicture;
    /**
     * 价格
     */
	private BigDecimal price;
    /**
     * 积分值
     */
	private Integer giftPoint;
    /**
     * 服务次数
     */
	private Integer timesNum;
    /**
     * 服务时间
     */
	private String serviceTime;
    /**
     * 备注
     */
	private String remark;
    /**
     * 部门ID
     */
	private Long deptId;
    /**
     * 更新者
     */
	private Long updater;
    /**
     * 更新时间
     */
	private Date updateDate;
81 82 83 84 85
	/**
	 * 服务内容介绍
	 */
	private String serviceContent;

mengmeng's avatar
mengmeng committed
86
}