bug 349 350 351 354 356 357
This commit is contained in:
@@ -23,15 +23,15 @@ import java.util.Date;
|
||||
public class ScheduleSlot extends HisBaseEntity {
|
||||
/** 明细主键 */
|
||||
@TableId(type = IdType.AUTO)
|
||||
private Integer id;
|
||||
private Long id;
|
||||
|
||||
/** 号源池ID */
|
||||
private Integer poolId;
|
||||
private Long poolId;
|
||||
|
||||
/** 序号 */
|
||||
private Integer seqNo;
|
||||
|
||||
/** 序号状态: 0-可用,1-已预约,2-已取消/已停诊,3-已锁定,4-已签到,5-已退号 */
|
||||
/** 序号状态: 0-可用,1-已预约,2-已取消/已停诊,3-已签到,4-已锁定,5-已退号 */
|
||||
private Integer status;
|
||||
|
||||
/** 预约订单ID */
|
||||
|
||||
@@ -53,5 +53,5 @@ public interface SchedulePoolMapper extends BaseMapper<SchedulePool> {
|
||||
AND locked_num > 0
|
||||
AND delete_flag = '0'
|
||||
""")
|
||||
int updatePoolStatsOnCheckIn(@Param("poolId") Integer poolId);
|
||||
int updatePoolStatsOnCheckIn(@Param("poolId") Long poolId);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user