refactor(common): 修改工单VO中的产量字段类型
- 将AdminTicketVO中的throughput字段从BigDecimal类型改为String类型 - 将TicketVO中的throughput字段从BigDecimal类型改为String类型 - 统一产量字段的数据类型以适应业务需求变化
This commit is contained in:
parent
adcf7f27f8
commit
373c4ae750
|
|
@ -10,7 +10,6 @@ import lombok.Data;
|
|||
import org.ttzero.excel.annotation.ExcelColumn;
|
||||
import org.ttzero.excel.annotation.IgnoreExport;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.time.LocalDateTime;
|
||||
import java.time.temporal.ChronoUnit;
|
||||
import java.util.Objects;
|
||||
|
|
@ -228,5 +227,5 @@ public class AdminTicketVO {
|
|||
/**
|
||||
* 产量
|
||||
*/
|
||||
private BigDecimal throughput;
|
||||
private String throughput;
|
||||
}
|
||||
|
|
@ -6,7 +6,6 @@ import com.nflg.mobilebroken.common.constant.TicketState;
|
|||
import lombok.Data;
|
||||
import lombok.experimental.Accessors;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.time.LocalDateTime;
|
||||
import java.util.List;
|
||||
|
||||
|
|
@ -80,5 +79,5 @@ public class TicketVO {
|
|||
/**
|
||||
* 产量
|
||||
*/
|
||||
private BigDecimal throughput;
|
||||
private String throughput;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue