27 lines
546 B
Java
27 lines
546 B
Java
|
package ink.wgink.gateway.pojo;
|
|||
|
|
|||
|
import lombok.Data;
|
|||
|
import org.springframework.data.mongodb.core.index.Indexed;
|
|||
|
|
|||
|
/**
|
|||
|
* When you feel like quitting. Think about why you started
|
|||
|
* 当你想要放弃的时候,想想当初你为何开始
|
|||
|
*
|
|||
|
* @ClassName: BasePO
|
|||
|
* @Description:
|
|||
|
* @Author: wanggeng
|
|||
|
* @Date: 2021/4/13 5:56 下午
|
|||
|
* @Version: 1.0
|
|||
|
*/
|
|||
|
@Data
|
|||
|
public class BasePOJO {
|
|||
|
|
|||
|
@Indexed
|
|||
|
private String uuid;
|
|||
|
private String gmtCreate;
|
|||
|
private String creator;
|
|||
|
private String gmtModified;
|
|||
|
private String modifier;
|
|||
|
|
|||
|
}
|