package com.ruoyi.manage.domain;
|
|
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 io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Getter;
|
import lombok.Setter;
|
|
import java.math.BigDecimal;
|
|
/**
|
* <p>
|
* 单位补给时间表
|
* </p>
|
*
|
* @author sunjiawei
|
* @since 2025-03-20
|
*/
|
@Getter
|
@Setter
|
@TableName("DP_UNIT_SUPPLY_TIME")
|
@Schema(description = "单位补给时间表")
|
public class DpUnitSupplyTime {
|
|
@Schema(title = "主键ID")
|
@TableId(value = "ID", type = IdType.AUTO)
|
private Integer id;
|
|
@Schema(title = "单位")
|
@TableField("UNIT")
|
private String unit;
|
|
@Schema(title = "补给种类")
|
@TableField("CATEGORY")
|
private String category;
|
|
@Schema(title = "补给时间")
|
@TableField("SUPPLY_TIME")
|
private Double supplyTime;
|
|
@Schema(title = "舰艇型号")
|
@TableField("SHIP_DESIGN")
|
private String shipDesign;
|
|
@TableField(exist = false)
|
private Integer pageSize;
|
|
|
@TableField(exist = false)
|
private Integer pageNum;
|
|
@TableField(exist = false)
|
private Integer offset;
|
|
}
|