refactor(common): 修改TicketDTO中throughput字段类型
- 移除BigDecimal类型导入 - 将throughput字段类型从BigDecimal改为String - 更新相关代码适配字段类型变更
This commit is contained in:
parent
c35c972a09
commit
adcf7f27f8
|
|
@ -2,7 +2,6 @@ package com.nflg.mobilebroken.common.pojo.dto;
|
||||||
|
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
|
||||||
import java.math.BigDecimal;
|
|
||||||
import java.time.LocalDateTime;
|
import java.time.LocalDateTime;
|
||||||
|
|
||||||
@Data
|
@Data
|
||||||
|
|
@ -153,5 +152,5 @@ public class TicketDTO {
|
||||||
/**
|
/**
|
||||||
* 产量
|
* 产量
|
||||||
*/
|
*/
|
||||||
private BigDecimal throughput;
|
private String throughput;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue