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.annotation.TableName;
import com.baomidou.mybatisplus.extension.activerecord.Model; import com.baomidou.mybatisplus.extension.activerecord.Model;
import java.io.Serializable; import java.io.Serializable;
import java.math.BigDecimal;
import java.time.LocalDateTime; import java.time.LocalDateTime;
import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty; import io.swagger.annotations.ApiModelProperty;

View File

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