You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
507 B
27 lines
507 B
package com.iflytop.nuclear.model;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.AllArgsConstructor;
|
|
import lombok.Builder;
|
|
import lombok.Data;
|
|
import lombok.NoArgsConstructor;
|
|
|
|
/**
|
|
* @author cool
|
|
* @date 2023/6/28 11:29
|
|
*/
|
|
@Data
|
|
@TableName("nuclear_station")
|
|
@Builder
|
|
@NoArgsConstructor
|
|
@AllArgsConstructor
|
|
public class NuclearStation {
|
|
|
|
@TableId
|
|
private int id;
|
|
|
|
private String name;
|
|
|
|
private String address;
|
|
}
|