Newer
Older
newfiber-termite / newfiber-termites / newfiber-termites-dataup / src / main / java / com / newfiber / termite / enums / EBusinessBaseRedisKey.java
@xiongkai xiongkai on 30 Sep 446 bytes 短信功能
package com.newfiber.termite.enums;

import com.newfiber.common.core.web.support.IRedisPrefix;
import lombok.AllArgsConstructor;
import lombok.Getter;

/**
 * @author : X.K
 * @since : 2023/2/28 下午3:03
 */
@Getter
@AllArgsConstructor
public enum EBusinessBaseRedisKey implements IRedisPrefix {

	/**
	 *
	 */
	ProjectStatistic("ProjectStatistic", "项目统计"),


		;

	private final String moduleKey;

	private final String moduleName;

}