Commit 3bbcf748 by liyanlin

fix

parent 93f83c8e
package com.bailuntec.api.bailuntec.mjcg.resp;
import com.alibaba.fastjson.annotation.JSONField;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import java.math.BigDecimal;
......@@ -15,31 +15,31 @@ import java.time.LocalDateTime;
@Data
public class SupofferLogResp {
@JSONField(name = "log_id")
@JsonProperty("log_id")
private Integer logId;
@JSONField(name = "supplier_id")
@JsonProperty("supplier_id")
private Integer supplierId;
@JSONField(name = "supplier_name")
@JsonProperty("supplier_name")
private String supplierName;
@JSONField(name = "unit_id")
@JsonProperty("unit_id")
private Integer unitId;
@JSONField(name = "unit_name")
@JsonProperty("unit_name")
private String unitName;
@JSONField(name = "create_time", format = "yyyy/MM/dd HH:mm:ss")
@JsonProperty("create_time")
private LocalDateTime createTime;
private BigDecimal price;
private String sku;
@JSONField(name = "sku_name")
@JsonProperty("sku_name")
private String skuName;
@JSONField(name = "sku_id")
@JsonProperty("sku_id")
private String sku_id;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment