去除无用注解
This commit is contained in:
parent
379697995c
commit
c57193d61e
@ -1,7 +1,6 @@
|
||||
package com.ebike.feign.model.vo;
|
||||
|
||||
import com.mybatisflex.annotation.Id;
|
||||
import com.mybatisflex.annotation.Table;
|
||||
import jakarta.validation.constraints.NotBlank;
|
||||
import jakarta.validation.constraints.NotNull;
|
||||
import lombok.AllArgsConstructor;
|
||||
@ -22,7 +21,6 @@ import java.io.Serializable;
|
||||
@Builder
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
@Table("ebike_dic_value")
|
||||
public class FeignEbikeDicValueVo implements Serializable {
|
||||
|
||||
@Serial
|
||||
|
||||
@ -3,7 +3,6 @@ package com.ebike.feign.model.vo;
|
||||
import com.mybatisflex.annotation.Column;
|
||||
import com.mybatisflex.annotation.Id;
|
||||
import com.mybatisflex.annotation.RelationOneToMany;
|
||||
import com.mybatisflex.annotation.Table;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
@ -24,7 +23,6 @@ import java.util.List;
|
||||
@Builder
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
@Table("ebike_dic")
|
||||
public class FeignEbikeDicVo implements Serializable {
|
||||
|
||||
@Serial
|
||||
|
||||
@ -1,8 +1,5 @@
|
||||
package com.ebike.feign.model.vo;
|
||||
|
||||
import com.mybatisflex.annotation.Column;
|
||||
import com.mybatisflex.annotation.Id;
|
||||
import com.mybatisflex.annotation.Table;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
@ -22,7 +19,6 @@ import java.time.LocalDateTime;
|
||||
@Builder
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
@Table("ebike_refund")
|
||||
public class FeignEbikeRefundVo implements Serializable {
|
||||
|
||||
|
||||
@ -32,7 +28,6 @@ public class FeignEbikeRefundVo implements Serializable {
|
||||
/**
|
||||
* 主键ID
|
||||
*/
|
||||
@Id
|
||||
private Long refundId;
|
||||
|
||||
/**
|
||||
@ -148,7 +143,6 @@ public class FeignEbikeRefundVo implements Serializable {
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
@Column(onInsertValue = "now()")
|
||||
private LocalDateTime createTime;
|
||||
|
||||
/**
|
||||
@ -159,7 +153,6 @@ public class FeignEbikeRefundVo implements Serializable {
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
@Column(onUpdateValue = "now()")
|
||||
private LocalDateTime updateTime;
|
||||
|
||||
/**
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user