Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* ioGame
* Copyright (C) 2021 - present 渔民小镇 ([email protected]、[email protected]) . All Rights Reserved.
* # iohao.com . 渔民小镇
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see .
*/
package com.iohao.game.common.kit;
import java.io.Serializable;
import java.time.LocalTime;
/**
* 时间段范围
*
* 23:00~1:30
*
*
* @author 渔民小镇
* @date 2021-12-20
* @deprecated 暂无代替,如有需要请 copy 现有的相关代码
*/
@Deprecated
public class TimeBetweenKit implements Serializable {
/**
* 一天的分钟总数
*/
static final int oneDayMinute = 24 * 60;
/**
* 指定时间是否在 时间段范围内
*