2024-01-24 14:27:40 +08:00
|
|
|
package com.gunshi.project.xyt.model;
|
|
|
|
|
|
|
|
|
|
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;
|
2024-01-24 16:32:03 +08:00
|
|
|
|
|
|
|
|
import java.io.Serializable;
|
2024-01-24 14:27:40 +08:00
|
|
|
import java.util.Date;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 闸阀基本信息- 附件表
|
|
|
|
|
*/
|
|
|
|
|
@Schema(description="闸阀基本信息- 附件表")
|
|
|
|
|
@Data
|
|
|
|
|
@TableName(value = "dbo.ST_GATE_B_FILE")
|
2024-01-24 16:32:03 +08:00
|
|
|
public class StGateBFile implements Serializable {
|
2024-01-24 14:27:40 +08:00
|
|
|
/**
|
|
|
|
|
* 闸阀ID
|
|
|
|
|
*/
|
2024-01-24 16:32:03 +08:00
|
|
|
@TableField(value = "GATE_ID")
|
2024-01-24 14:27:40 +08:00
|
|
|
@Schema(description="闸阀ID")
|
|
|
|
|
private Long gateId;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 文件ID
|
|
|
|
|
*/
|
2024-01-24 16:32:03 +08:00
|
|
|
@TableField(value = "FILE_ID")
|
2024-01-24 14:27:40 +08:00
|
|
|
@Schema(description="文件ID")
|
|
|
|
|
private Long fileId;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 时间戳
|
|
|
|
|
*/
|
|
|
|
|
@TableField(value = "TM")
|
|
|
|
|
@Schema(description="时间戳")
|
|
|
|
|
private Date tm;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 排序字段
|
|
|
|
|
*/
|
|
|
|
|
@TableField(value = "SORT_ON")
|
|
|
|
|
@Schema(description="排序字段")
|
|
|
|
|
private Integer sortOn;
|
|
|
|
|
|
|
|
|
|
public static final String COL_GATE_ID = "GATE_ID";
|
|
|
|
|
|
|
|
|
|
public static final String COL_FILE_ID = "FILE_ID";
|
|
|
|
|
|
|
|
|
|
public static final String COL_TM = "TM";
|
|
|
|
|
|
|
|
|
|
public static final String COL_SORT_ON = "SORT_ON";
|
|
|
|
|
}
|