fix:修复编译问题

This commit is contained in:
amos
2026-01-27 17:52:38 +08:00
parent 14206fad6b
commit e0c5cb6dde
3 changed files with 45 additions and 0 deletions

View File

@@ -66,6 +66,21 @@ public class FixedSchedule implements Serializable {
*/
private Integer status;
/**
* 可用座位数
*/
private Integer availableSeats;
/**
* 已售座位数
*/
private Integer soldSeats;
/**
* 乐观锁版本号
*/
private Integer version;
/**
* 创建时间
*/

View File

@@ -28,6 +28,21 @@ public class InventoryLog implements Serializable {
*/
private String inventoryCode;
/**
* 库存类型FIXED-固定班次ROLLING-滚动发车
*/
private String inventoryType;
/**
* 固定班次编号
*/
private String scheduleCode;
/**
* 滚动班次编号
*/
private String rollingScheduleCode;
/**
* 线路编号
*/

View File

@@ -49,6 +49,21 @@ public class RollingSchedule implements Serializable {
*/
private Integer status;
/**
* 可用座位数
*/
private Integer availableSeats;
/**
* 已售座位数
*/
private Integer soldSeats;
/**
* 乐观锁版本号
*/
private Integer version;
/**
* 创建时间
*/