1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.iplatform.core;
|
| import org.slf4j.Logger;
| import org.slf4j.LoggerFactory;
|
| /**
| * 所有模块的配置文件对象都要继承平台配置。
| * @author 时克英
| * @date 2022-09-20
| */
| public abstract class PlatformConfiguration {
|
| protected final transient Logger logger = LoggerFactory.getLogger(this.getClass());
|
| }
|
|