|
|
@@ -3,7 +3,10 @@ package beilv.carinformation.domain;
|
|
|
import java.math.BigDecimal;
|
|
|
import java.util.Date;
|
|
|
|
|
|
+import beilv.common.constant.PriceOptions;
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
+import lombok.Getter;
|
|
|
+import lombok.Setter;
|
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
|
import beilv.common.annotation.Excel;
|
|
|
@@ -15,6 +18,8 @@ import beilv.common.core.domain.BaseEntity;
|
|
|
* @author ruoyi
|
|
|
* @date 2025-01-02
|
|
|
*/
|
|
|
+@Setter
|
|
|
+@Getter
|
|
|
public class CarInformation extends BaseEntity {
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
@@ -85,125 +90,6 @@ public class CarInformation extends BaseEntity {
|
|
|
//图片
|
|
|
private String file;
|
|
|
|
|
|
- public String getFile() {
|
|
|
- return file;
|
|
|
- }
|
|
|
+ private String userId;
|
|
|
|
|
|
- public void setFile(String file) {
|
|
|
- this.file = file;
|
|
|
- }
|
|
|
-
|
|
|
- public BigDecimal getOriginalPrice() {
|
|
|
- return originalPrice;
|
|
|
- }
|
|
|
-
|
|
|
- public void setOriginalPrice(BigDecimal originalPrice) {
|
|
|
- this.originalPrice = originalPrice;
|
|
|
- }
|
|
|
-
|
|
|
- public BigDecimal getMemberPrice() {
|
|
|
- return memberPrice;
|
|
|
- }
|
|
|
-
|
|
|
- public void setMemberPrice(BigDecimal memberPrice) {
|
|
|
- this.memberPrice = memberPrice;
|
|
|
- }
|
|
|
-
|
|
|
- public String getCardState() {
|
|
|
- return cardState;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCardState(String cardState) {
|
|
|
- this.cardState = cardState;
|
|
|
- }
|
|
|
-
|
|
|
- public String getCardStateLabel() {
|
|
|
- return cardStateLabel;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCardStateLabel(String cardStateLabel) {
|
|
|
- this.cardStateLabel = cardStateLabel;
|
|
|
- }
|
|
|
-
|
|
|
- public String getTypeLabel() {
|
|
|
- return typeLabel;
|
|
|
- }
|
|
|
-
|
|
|
- public void setTypeLabel(String typeLabel) {
|
|
|
- this.typeLabel = typeLabel;
|
|
|
- }
|
|
|
-
|
|
|
- public void setId(Long id) {
|
|
|
- this.id = id;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getId() {
|
|
|
- return id;
|
|
|
- }
|
|
|
-
|
|
|
- public void setName(String name) {
|
|
|
- this.name = name;
|
|
|
- }
|
|
|
-
|
|
|
- public String getName() {
|
|
|
- return name;
|
|
|
- }
|
|
|
-
|
|
|
- public void setType(String type) {
|
|
|
- this.type = type;
|
|
|
- }
|
|
|
-
|
|
|
- public String getType() {
|
|
|
- return type;
|
|
|
- }
|
|
|
-
|
|
|
- public void setTotalNumber(Integer totalNumber) {
|
|
|
- this.totalNumber = totalNumber;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getTotalNumber() {
|
|
|
- return totalNumber;
|
|
|
- }
|
|
|
-
|
|
|
- public void setPoint(Integer point) {
|
|
|
- this.point = point;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getPoint() {
|
|
|
- return point;
|
|
|
- }
|
|
|
-
|
|
|
- public void setExpirationDate(Date expirationDate) {
|
|
|
- this.expirationDate = expirationDate;
|
|
|
- }
|
|
|
-
|
|
|
- public Date getExpirationDate() {
|
|
|
- return expirationDate;
|
|
|
- }
|
|
|
-
|
|
|
- public void setNotes(String notes) {
|
|
|
- this.notes = notes;
|
|
|
- }
|
|
|
-
|
|
|
- public String getNotes() {
|
|
|
- return notes;
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public String toString() {
|
|
|
- return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|
|
|
- .append("id", getId())
|
|
|
- .append("name", getName())
|
|
|
- .append("type", getType())
|
|
|
- .append("totalNumber", getTotalNumber())
|
|
|
- .append("point", getPoint())
|
|
|
- .append("expirationDate", getExpirationDate())
|
|
|
- .append("notes", getNotes())
|
|
|
- .append("cardState", getCardState())
|
|
|
- .append("createBy", getCreateBy())
|
|
|
- .append("createTime", getCreateTime())
|
|
|
- .append("updateBy", getUpdateBy())
|
|
|
- .append("updateTime", getUpdateTime())
|
|
|
- .toString();
|
|
|
- }
|
|
|
}
|