This commit is contained in:
@@ -1,406 +0,0 @@
|
||||
export interface RoomBookingVO {
|
||||
/**
|
||||
* id
|
||||
*/
|
||||
id: string | number;
|
||||
|
||||
/**
|
||||
* 会议室id
|
||||
*/
|
||||
tbConferenceId: string | number;
|
||||
|
||||
/**
|
||||
* 预约状态(0:未预定 1:使用中 2:已预订)
|
||||
*/
|
||||
bookingStatus: number;
|
||||
|
||||
/**
|
||||
* 审核状态(0:未审核 1:通过 2:未通过)
|
||||
*/
|
||||
reviewStatus: number;
|
||||
|
||||
/**
|
||||
* 会议预订人
|
||||
*/
|
||||
bookingName: string;
|
||||
|
||||
/**
|
||||
* 使用单位
|
||||
*/
|
||||
userUnit: string;
|
||||
|
||||
/**
|
||||
* 会议主题
|
||||
*/
|
||||
conferenceTheme: string;
|
||||
|
||||
/**
|
||||
* 预约日期
|
||||
*/
|
||||
appointmentDate: string;
|
||||
|
||||
/**
|
||||
* 预约开始时段
|
||||
*/
|
||||
appointmentBeginTime: string;
|
||||
|
||||
/**
|
||||
* 预约结束时段
|
||||
*/
|
||||
appointmentEndTime: string;
|
||||
|
||||
/**
|
||||
* 参会人员
|
||||
*/
|
||||
attendeesName: string;
|
||||
|
||||
/**
|
||||
* 参会人数
|
||||
*/
|
||||
approverCount: number;
|
||||
|
||||
/**
|
||||
* 签到开始时间
|
||||
*/
|
||||
checkInStartTime: string;
|
||||
|
||||
/**
|
||||
* 签到结束时间
|
||||
*/
|
||||
checkInEndTime: string;
|
||||
|
||||
/**
|
||||
* 审批人
|
||||
*/
|
||||
approver: string;
|
||||
|
||||
/**
|
||||
* 审批时间
|
||||
*/
|
||||
approverTime: string;
|
||||
|
||||
/**
|
||||
* 评价
|
||||
*/
|
||||
evaluate: string;
|
||||
|
||||
/**
|
||||
* 备注
|
||||
*/
|
||||
remark: string;
|
||||
|
||||
/**
|
||||
* 是否需要增值服务(0:需要,1:不需要)
|
||||
*/
|
||||
addServices: number;
|
||||
|
||||
/**
|
||||
* 创建人id
|
||||
*/
|
||||
createById: string | number;
|
||||
|
||||
/**
|
||||
* 创建人
|
||||
*/
|
||||
createBy: string;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
createTime: string;
|
||||
|
||||
/**
|
||||
* 更新人id
|
||||
*/
|
||||
updateById: string | number;
|
||||
|
||||
/**
|
||||
* 更新人
|
||||
*/
|
||||
updateBy: string;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
updateTime: string;
|
||||
|
||||
/**
|
||||
* 数据状态(模拟删除 0:未删除 1:删除)
|
||||
*/
|
||||
dataStatus: number;
|
||||
|
||||
}
|
||||
|
||||
export interface RoomBookingForm extends BaseEntity {
|
||||
/**
|
||||
* id
|
||||
*/
|
||||
id?: string | number;
|
||||
|
||||
/**
|
||||
* 会议室id
|
||||
*/
|
||||
tbConferenceId?: string | number;
|
||||
|
||||
/**
|
||||
* 预约状态(0:未预定 1:使用中 2:已预订)
|
||||
*/
|
||||
bookingStatus?: number;
|
||||
|
||||
/**
|
||||
* 审核状态(0:未审核 1:通过 2:未通过)
|
||||
*/
|
||||
reviewStatus?: number;
|
||||
|
||||
/**
|
||||
* 会议预订人
|
||||
*/
|
||||
bookingName?: string;
|
||||
|
||||
/**
|
||||
* 使用单位
|
||||
*/
|
||||
userUnit?: string;
|
||||
|
||||
/**
|
||||
* 会议主题
|
||||
*/
|
||||
conferenceTheme?: string;
|
||||
|
||||
/**
|
||||
* 预约日期
|
||||
*/
|
||||
appointmentDate?: string;
|
||||
|
||||
/**
|
||||
* 预约开始时段
|
||||
*/
|
||||
appointmentBeginTime?: string;
|
||||
|
||||
/**
|
||||
* 预约结束时段
|
||||
*/
|
||||
appointmentEndTime?: string;
|
||||
|
||||
/**
|
||||
* 参会人员
|
||||
*/
|
||||
attendeesName?: string;
|
||||
|
||||
/**
|
||||
* 参会人数
|
||||
*/
|
||||
approverCount?: number;
|
||||
|
||||
/**
|
||||
* 签到开始时间
|
||||
*/
|
||||
checkInStartTime?: string;
|
||||
|
||||
/**
|
||||
* 签到结束时间
|
||||
*/
|
||||
checkInEndTime?: string;
|
||||
|
||||
/**
|
||||
* 审批人
|
||||
*/
|
||||
approver?: string;
|
||||
|
||||
/**
|
||||
* 审批时间
|
||||
*/
|
||||
approverTime?: string;
|
||||
|
||||
/**
|
||||
* 评价
|
||||
*/
|
||||
evaluate?: string;
|
||||
|
||||
/**
|
||||
* 备注
|
||||
*/
|
||||
remark?: string;
|
||||
|
||||
/**
|
||||
* 是否需要增值服务(0:需要,1:不需要)
|
||||
*/
|
||||
addServices?: number;
|
||||
|
||||
/**
|
||||
* 创建人id
|
||||
*/
|
||||
createById?: string | number;
|
||||
|
||||
/**
|
||||
* 创建人
|
||||
*/
|
||||
createBy?: string;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
createTime?: string;
|
||||
|
||||
/**
|
||||
* 更新人id
|
||||
*/
|
||||
updateById?: string | number;
|
||||
|
||||
/**
|
||||
* 更新人
|
||||
*/
|
||||
updateBy?: string;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
updateTime?: string;
|
||||
|
||||
/**
|
||||
* 数据状态(模拟删除 0:未删除 1:删除)
|
||||
*/
|
||||
dataStatus?: number;
|
||||
|
||||
}
|
||||
|
||||
export interface RoomBookingQuery extends PageQuery {
|
||||
|
||||
/**
|
||||
* id
|
||||
*/
|
||||
id?: string | number;
|
||||
|
||||
/**
|
||||
* 会议室id
|
||||
*/
|
||||
tbConferenceId?: string | number;
|
||||
|
||||
/**
|
||||
* 预约状态(0:未预定 1:使用中 2:已预订)
|
||||
*/
|
||||
bookingStatus?: number;
|
||||
|
||||
/**
|
||||
* 审核状态(0:未审核 1:通过 2:未通过)
|
||||
*/
|
||||
reviewStatus?: number;
|
||||
|
||||
/**
|
||||
* 会议预订人
|
||||
*/
|
||||
bookingName?: string;
|
||||
|
||||
/**
|
||||
* 使用单位
|
||||
*/
|
||||
userUnit?: string;
|
||||
|
||||
/**
|
||||
* 会议主题
|
||||
*/
|
||||
conferenceTheme?: string;
|
||||
|
||||
/**
|
||||
* 预约日期
|
||||
*/
|
||||
appointmentDate?: string;
|
||||
|
||||
/**
|
||||
* 预约开始时段
|
||||
*/
|
||||
appointmentBeginTime?: string;
|
||||
|
||||
/**
|
||||
* 预约结束时段
|
||||
*/
|
||||
appointmentEndTime?: string;
|
||||
|
||||
/**
|
||||
* 参会人员
|
||||
*/
|
||||
attendeesName?: string;
|
||||
|
||||
/**
|
||||
* 参会人数
|
||||
*/
|
||||
approverCount?: number;
|
||||
|
||||
/**
|
||||
* 签到开始时间
|
||||
*/
|
||||
checkInStartTime?: string;
|
||||
|
||||
/**
|
||||
* 签到结束时间
|
||||
*/
|
||||
checkInEndTime?: string;
|
||||
|
||||
/**
|
||||
* 审批人
|
||||
*/
|
||||
approver?: string;
|
||||
|
||||
/**
|
||||
* 审批时间
|
||||
*/
|
||||
approverTime?: string;
|
||||
|
||||
/**
|
||||
* 评价
|
||||
*/
|
||||
evaluate?: string;
|
||||
|
||||
/**
|
||||
* 备注
|
||||
*/
|
||||
remark?: string;
|
||||
|
||||
/**
|
||||
* 是否需要增值服务(0:需要,1:不需要)
|
||||
*/
|
||||
addServices?: number;
|
||||
|
||||
/**
|
||||
* 创建人id
|
||||
*/
|
||||
createById?: string | number;
|
||||
|
||||
/**
|
||||
* 创建人
|
||||
*/
|
||||
createBy?: string;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
createTime?: string;
|
||||
|
||||
/**
|
||||
* 更新人id
|
||||
*/
|
||||
updateById?: string | number;
|
||||
|
||||
/**
|
||||
* 更新人
|
||||
*/
|
||||
updateBy?: string;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
updateTime?: string;
|
||||
|
||||
/**
|
||||
* 数据状态(模拟删除 0:未删除 1:删除)
|
||||
*/
|
||||
dataStatus?: number;
|
||||
|
||||
/**
|
||||
* 日期范围参数
|
||||
*/
|
||||
params?: any;
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user