guyue
4 天以前 89f8649e8cf9bc12b9e29abb0adc4f9b77273143
src/main/java/com/linghu/model/entity/Platform.java
@@ -5,8 +5,10 @@
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import java.time.LocalDateTime;
import java.util.Date;
import lombok.Data;
import com.fasterxml.jackson.annotation.JsonFormat;
/**
 * 
@@ -39,7 +41,8 @@
    /**
     * 
     */
    private Date create_time;
        @JsonFormat(pattern = "yyyy-MM-dd'T'HH:mm:ss.SSSSSS", timezone = "GMT+8")
        private LocalDateTime create_time;
    /**
     * 
@@ -49,7 +52,8 @@
    /**
     * 
     */
    private Date update_time;
        @JsonFormat(pattern = "yyyy-MM-dd'T'HH:mm:ss.SSSSSS", timezone = "GMT+8")
        private LocalDateTime update_time;
    /**
     * 
@@ -82,7 +86,8 @@
                        : this.getType_id().equals(other.getType_id()))
                && (this.getPlatform_name() == null ? other.getPlatform_name() == null
                        : this.getPlatform_name().equals(other.getPlatform_name()))
                && (this.getDomain() == null ? other.getDomain() == null : this.getDomain().equals(other.getDomain()))
                                && (this.getDomain() == null ? other.getDomain() == null
                                                : this.getDomain().equals(other.getDomain()))
                && (this.getCreate_time() == null ? other.getCreate_time() == null
                        : this.getCreate_time().equals(other.getCreate_time()))
                && (this.getCreate_by() == null ? other.getCreate_by() == null