| | |
| | | package com.panzhihua.service_community.model.dos; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.FieldFill; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.FieldFill; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | |
| | | import lombok.Data; |
| | | |
| | | /** |
| | | * @description: 便民服务列表 |
| | |
| | | private Date createAt; |
| | | |
| | | public boolean equals(ComCvtServeDO obj) { |
| | | return obj.getBusinessId() == this.getBusinessId() |
| | | && obj.getCategoryId() == this.getCategoryId() |
| | | && obj.getServiceName().equals(this.getServiceName()) |
| | | && obj.getServicePrice().compareTo(this.getServicePrice()) == 0 |
| | | && obj.getServiceDesc().equals(this.getServiceDesc()) |
| | | ; |
| | | return obj.getBusinessId() == this.getBusinessId() && obj.getCategoryId() == this.getCategoryId() |
| | | && obj.getServiceName().equals(this.getServiceName()) |
| | | && obj.getServicePrice().compareTo(this.getServicePrice()) == 0 |
| | | && obj.getServiceDesc().equals(this.getServiceDesc()); |
| | | } |
| | | } |