段飞宇
1 year ago
8 changed files with 234 additions and 7 deletions
@ -0,0 +1,97 @@
|
||||
package com.hnac.hzims.operational.station.entity; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType; |
||||
import com.baomidou.mybatisplus.annotation.TableField; |
||||
import com.baomidou.mybatisplus.annotation.TableId; |
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
import lombok.experimental.Accessors; |
||||
|
||||
import java.io.Serializable; |
||||
import java.time.LocalDateTime; |
||||
|
||||
/** |
||||
* <p> |
||||
* 电站评分表 |
||||
* </p> |
||||
* |
||||
* @author dfy |
||||
* @since 2023-08-16 |
||||
*/ |
||||
@Data |
||||
@EqualsAndHashCode(callSuper = false) |
||||
@Accessors(chain = true) |
||||
@TableName("station_evaluation") |
||||
public class StationEvaluation implements Serializable { |
||||
|
||||
private static final long serialVersionUID=1L; |
||||
|
||||
/** |
||||
* 编号 |
||||
*/ |
||||
@TableId(value = "id", type = IdType.AUTO) |
||||
private Long id; |
||||
|
||||
/** |
||||
* 类别 |
||||
*/ |
||||
@TableField("evaluation_name") |
||||
private String evaluationName; |
||||
|
||||
/** |
||||
* 站点id |
||||
*/ |
||||
@TableField("station_id") |
||||
private Long stationId; |
||||
|
||||
/** |
||||
* 父级 |
||||
*/ |
||||
@TableField("parent_id") |
||||
private Long parentId; |
||||
|
||||
/** |
||||
* 等级 |
||||
*/ |
||||
@TableField("level") |
||||
private Integer level; |
||||
|
||||
/** |
||||
* 分数 |
||||
*/ |
||||
@TableField("minute") |
||||
private Integer minute; |
||||
|
||||
/** |
||||
* 得分 |
||||
*/ |
||||
@TableField("score") |
||||
private Integer score; |
||||
|
||||
/** |
||||
* 描述 |
||||
*/ |
||||
@TableField("description") |
||||
private String description; |
||||
|
||||
/** |
||||
* 创建时间 |
||||
*/ |
||||
@TableField("create_time") |
||||
private LocalDateTime createTime; |
||||
|
||||
/** |
||||
* 更新时间 |
||||
*/ |
||||
@TableField("update_time") |
||||
private LocalDateTime updateTime; |
||||
|
||||
/** |
||||
* 逻辑删除 |
||||
*/ |
||||
@TableField("is_deleted") |
||||
private Boolean deleted; |
||||
|
||||
|
||||
} |
Loading…
Reference in new issue