fix:修复编译问题
This commit is contained in:
@@ -66,6 +66,21 @@ public class FixedSchedule implements Serializable {
|
||||
*/
|
||||
private Integer status;
|
||||
|
||||
/**
|
||||
* 可用座位数
|
||||
*/
|
||||
private Integer availableSeats;
|
||||
|
||||
/**
|
||||
* 已售座位数
|
||||
*/
|
||||
private Integer soldSeats;
|
||||
|
||||
/**
|
||||
* 乐观锁版本号
|
||||
*/
|
||||
private Integer version;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
|
||||
@@ -28,6 +28,21 @@ public class InventoryLog implements Serializable {
|
||||
*/
|
||||
private String inventoryCode;
|
||||
|
||||
/**
|
||||
* 库存类型:FIXED-固定班次,ROLLING-滚动发车
|
||||
*/
|
||||
private String inventoryType;
|
||||
|
||||
/**
|
||||
* 固定班次编号
|
||||
*/
|
||||
private String scheduleCode;
|
||||
|
||||
/**
|
||||
* 滚动班次编号
|
||||
*/
|
||||
private String rollingScheduleCode;
|
||||
|
||||
/**
|
||||
* 线路编号
|
||||
*/
|
||||
|
||||
@@ -49,6 +49,21 @@ public class RollingSchedule implements Serializable {
|
||||
*/
|
||||
private Integer status;
|
||||
|
||||
/**
|
||||
* 可用座位数
|
||||
*/
|
||||
private Integer availableSeats;
|
||||
|
||||
/**
|
||||
* 已售座位数
|
||||
*/
|
||||
private Integer soldSeats;
|
||||
|
||||
/**
|
||||
* 乐观锁版本号
|
||||
*/
|
||||
private Integer version;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user