fix(price-result): 修复无法编辑的问题

This commit is contained in:
han0
2023-12-27 19:04:44 +08:00
parent ffb6c8a2eb
commit 6b05baaa74
2 changed files with 14 additions and 17 deletions

View File

@@ -6,7 +6,6 @@ import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.extension.activerecord.Model;
import java.io.Serializable;
import java.math.BigDecimal;
import java.time.LocalDateTime;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;

View File

@@ -1,10 +1,8 @@
package mjkf.xinke.main.model.vo;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Getter;
import lombok.Setter;
import java.math.BigDecimal;
@Getter
@@ -18,45 +16,45 @@ public class PriceResultEditRequest {
// private Integer month;
@JsonProperty(value = "price_ftb")
// @JsonProperty(value = "price_ftb")
private Integer priceFtb;
@JsonProperty(value = "fluctuating_ftb")
// @JsonProperty(value = "fluctuating_ftb")
private Integer fluctuatingFtb;
@JsonProperty(value = "price_ss")
// @JsonProperty(value = "price_ss")
private Integer priceSs;
@JsonProperty(value = "fluctuating_ss")
// @JsonProperty(value = "fluctuating_ss")
private Integer fluctuatingSs;
@JsonProperty(value = "price_fhb")
// @JsonProperty(value = "price_fhb")
private Integer priceFhb;
@JsonProperty(value = "fluctuating_fhb")
// @JsonProperty(value = "fluctuating_fhb")
private Integer fluctuatingFhb;
@JsonProperty(value = "price_network")
// @JsonProperty(value = "price_network")
private Integer priceNetwork;
@JsonProperty(value = "fluctuating_network")
// @JsonProperty(value = "fluctuating_network")
private Integer fluctuatingNetwork;
@JsonProperty(value = "price_survey")
// @JsonProperty(value = "price_survey")
private Integer priceSurvey;
@JsonProperty(value = "fluctuating_survey")
// @JsonProperty(value = "fluctuating_survey")
private Integer fluctuatingSurvey;
@JsonProperty(value = "priceLast_month")
// @JsonProperty(value = "priceLast_month")
private Integer priceLastMonth;
@JsonProperty(value = "price_calculate")
// @JsonProperty(value = "price_calculate")
private Integer priceCalculate;
@JsonProperty(value = "price_recommend")
// @JsonProperty(value = "price_recommend")
private Integer priceRecommend;
@JsonProperty(value = "fluctuating_recommend")
// @JsonProperty(value = "fluctuating_recommend")
private Integer fluctuatingRecommend;
}