v1.4.1
parent
f18ab3381c
commit
68bca4f508
@ -0,0 +1,18 @@
|
||||
package org.opsli.common.base.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.Version;
|
||||
|
||||
/**
|
||||
* @BelongsProject: opsli-boot
|
||||
* @BelongsPackage: org.opsli.common.base.entity
|
||||
* @Author: Parker
|
||||
* @CreateTime: 2020-09-14 17:29
|
||||
* @Description: Entity 基类
|
||||
*/
|
||||
public class BaseEntity {
|
||||
|
||||
/** 乐观锁 */
|
||||
@Version
|
||||
private Integer version;
|
||||
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
package org.opsli.common.base.service.impl;
|
||||
|
||||
/**
|
||||
* @BelongsProject: opsli-boot
|
||||
* @BelongsPackage: org.opsli.common.base.service.impl
|
||||
* @Author: Parker
|
||||
* @CreateTime: 2020-09-14 17:31
|
||||
* @Description: ServiceImpl 基类 - 实现类
|
||||
*/
|
||||
public class CrudServiceImpl {
|
||||
|
||||
|
||||
|
||||
}
|
Loading…
Reference in new issue