kaiyu
2021-11-09 a54daffd42f8d62eee0ac01b79d126d100f08e1d
screen-api/src/main/java/com/moral/api/entity/User.java
@@ -13,9 +13,7 @@
import lombok.Data;
import lombok.EqualsAndHashCode;
import javax.persistence.Transient;
import org.springframework.format.annotation.DateTimeFormat;
/**
 * <p>
@@ -93,7 +91,8 @@
    /**
     * 过期时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    private Date expireTime;
    /**
@@ -101,10 +100,5 @@
     */
    private String isDelete;
    @Override
    protected Serializable pkVal() {
        return this.id;
    }
}