|
@@ -79,18 +79,20 @@ public class BaseRailwayManagement extends BaseEntity implements Serializable {
|
|
|
/**
|
|
|
* 起始里程
|
|
|
*/
|
|
|
+ @Excel(name = "起始里程", type = Excel.Type.EXPORT)
|
|
|
private Integer initialMileage;
|
|
|
|
|
|
@TableField(exist = false)
|
|
|
- @Excel(name = "起始里程")
|
|
|
+ @Excel(name = "起始里程", type = Excel.Type.IMPORT)
|
|
|
private BigDecimal initialMileageBD;
|
|
|
|
|
|
/**
|
|
|
* 结束里程
|
|
|
*/
|
|
|
+ @Excel(name = "起始里程", type = Excel.Type.EXPORT)
|
|
|
private Integer endMileage;
|
|
|
@TableField(exist = false)
|
|
|
- @Excel(name = "结束里程")
|
|
|
+ @Excel(name = "结束里程", type = Excel.Type.IMPORT)
|
|
|
private BigDecimal endMileageBD;
|
|
|
|
|
|
/**
|