This commit is contained in:
2020-08-25 10:08:00 +08:00
parent 288ce9cd0c
commit 2d9e287f09
222 changed files with 1570 additions and 692 deletions

View File

@@ -0,0 +1,15 @@
package com.fenghoo.seven.base;
import java.io.Serializable;
/**
* @description 实体基类
* @author fangyan
* @date 2015年8月1日
*/
public class BaseBean implements Serializable {
private static final long serialVersionUID = 1L;
}