mirror of
https://gitee.com/dromara/MaxKey.git
synced 2025-12-06 17:08:29 +08:00
service remove Serializable
This commit is contained in:
parent
c5da994f8b
commit
60560bf72d
@ -17,7 +17,6 @@
|
||||
|
||||
package org.dromara.maxkey.persistence.service;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.sql.Types;
|
||||
import java.time.LocalDateTime;
|
||||
import java.time.LocalTime;
|
||||
@ -39,11 +38,7 @@ import org.springframework.stereotype.Repository;
|
||||
import com.fasterxml.jackson.annotation.JsonIgnore;
|
||||
|
||||
@Repository
|
||||
public class GroupsService extends JpaService<Groups> implements Serializable {
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = -4156671926199393550L;
|
||||
public class GroupsService extends JpaService<Groups>{
|
||||
|
||||
static final Logger _logger = LoggerFactory.getLogger(GroupsService.class);
|
||||
@JsonIgnore
|
||||
|
||||
@ -2,7 +2,6 @@
|
||||
|
||||
package org.dromara.maxkey.persistence.service;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.sql.Types;
|
||||
import java.time.LocalDateTime;
|
||||
import java.time.LocalTime;
|
||||
@ -23,12 +22,7 @@ import org.springframework.stereotype.Repository;
|
||||
import com.fasterxml.jackson.annotation.JsonIgnore;
|
||||
|
||||
@Repository
|
||||
public class RolesService extends JpaService<Roles> implements Serializable {
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = -4156671926199393550L;
|
||||
|
||||
public class RolesService extends JpaService<Roles> {
|
||||
static final Logger _logger = LoggerFactory.getLogger(RolesService.class);
|
||||
|
||||
@JsonIgnore
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user