| | |
| | | package com.by4cloud.platformx.device.entity; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.by4cloud.platformx.common.data.mybatis.BaseModel; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | |
| | | */ |
| | | @Column(columnDefinition="long comment '验收主表Id'") |
| | | private Long noteId; |
| | | |
| | | /** |
| | | * 合同Id |
| | | */ |
| | |
| | | @Schema(description = "数量") |
| | | @Column(columnDefinition="long comment '数量'") |
| | | private Long num; |
| | | |
| | | /** |
| | | * 验收金额 |
| | | */ |
| | | @TableField("`output`") |
| | | @Column(columnDefinition="double comment '验收金额'") |
| | | private Double output; |
| | | |
| | | /** |
| | | * 设备编码 |
| | | */ |
| | | @Schema(description="设备编码") |
| | | @Column(columnDefinition="VARCHAR(16) comment '设备编码'") |
| | | private String deviceCode; |
| | | |
| | | /** |
| | | * 设备名称 |
| | | */ |
| | | @Schema(description="设备名称") |
| | | @Column(columnDefinition="VARCHAR(256) comment '设备名称'") |
| | | private String deviceName; |
| | | |
| | | /** |
| | | * 规格型号 |
| | | */ |
| | | @Schema(description="规格型号") |
| | | @Column(columnDefinition="VARCHAR(256) comment '规格型号'") |
| | | private String deviceModels; |
| | | |
| | | /** |
| | | * 关键参数 |
| | | */ |
| | | @Schema(description="关键参数") |
| | | @Column(columnDefinition="VARCHAR(256) comment '关键参数'") |
| | | private String keyParameter; |
| | | |
| | | |
| | | /** |
| | | * 计量单位 |
| | | */ |
| | | @Schema(description="计量单位") |
| | | @Column(columnDefinition="VARCHAR(32) comment '计量单位'") |
| | | private String meteringUnit; |
| | | |
| | | } |