|
@@ -2,6 +2,7 @@ package com.jjt.ws.domain;
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
+import com.fasterxml.jackson.annotation.JsonProperty;
|
|
|
import com.jjt.common.annotation.Excel;
|
|
|
import com.jjt.common.core.domain.BaseEntity;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
@@ -61,6 +62,7 @@ public class TwinWorkshopCalc extends BaseEntity {
|
|
|
*/
|
|
|
@ApiModelProperty("A班价格")
|
|
|
@Excel(name = "A班价格")
|
|
|
+ @JsonProperty("aPrice")
|
|
|
private BigDecimal aPrice;
|
|
|
|
|
|
/**
|
|
@@ -68,6 +70,7 @@ public class TwinWorkshopCalc extends BaseEntity {
|
|
|
*/
|
|
|
@ApiModelProperty("B班价格")
|
|
|
@Excel(name = "B班价格")
|
|
|
+ @JsonProperty("bPrice")
|
|
|
private BigDecimal bPrice;
|
|
|
|
|
|
/**
|
|
@@ -82,6 +85,7 @@ public class TwinWorkshopCalc extends BaseEntity {
|
|
|
*/
|
|
|
@ApiModelProperty("A班统计")
|
|
|
@Excel(name = "A班统计")
|
|
|
+ @JsonProperty("aValue")
|
|
|
private BigDecimal aValue;
|
|
|
|
|
|
/**
|
|
@@ -89,6 +93,7 @@ public class TwinWorkshopCalc extends BaseEntity {
|
|
|
*/
|
|
|
@ApiModelProperty("B班统计")
|
|
|
@Excel(name = "B班统计")
|
|
|
+ @JsonProperty("bValue")
|
|
|
private BigDecimal bValue;
|
|
|
|
|
|
public void setValue(BigDecimal aValue, BigDecimal bValue) {
|