| | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | |
| | | import java.io.Serializable; |
| | | import java.time.LocalDateTime; |
| | | |
| | | import lombok.Data; |
| | | |
| | | /** |
| | | * |
| | | * @TableName air_equipment_nong_geng |
| | | */ |
| | | @TableName(value ="air_equipment_nong_geng") |
| | | @TableName(value = "air_equipment_nong_geng") |
| | | @Data |
| | | public class AirEquipmentNongGeng implements Serializable { |
| | | /** |
| | | * |
| | | * |
| | | */ |
| | | @TableId |
| | | private Long id; |
| | |
| | | private LocalDateTime createTime; |
| | | |
| | | @TableField(exist = false) |
| | | private Integer state; |
| | | |
| | | @TableField(exist = false) |
| | | private static final long serialVersionUID = 1L; |
| | | } |