| | |
| | | package com.by4cloud.platformx.device.entity; |
| | | |
| | | import com.by4cloud.platformx.common.data.mybatis.BaseModel; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | |
| | | @Data |
| | | @Entity |
| | | @Table(appliesTo = "device_demand_plan", comment = "设备需求计划主表") |
| | | public class DeviceDemandPlan extends DeviceBaseModel<DeviceDemandPlan>{ |
| | | public class DeviceDemandPlan extends BaseModel<DeviceDemandPlan> { |
| | | @Schema(description = "设备编码") |
| | | @Column(columnDefinition="VARCHAR(64) comment '设备编码'") |
| | | private String number; |
| | |
| | | @Schema(description = "联系人") |
| | | @Column(columnDefinition="VARCHAR(64) comment '联系人'") |
| | | private String contacts; |
| | | @Schema(description = "申报状态") |
| | | @Schema(description = "申报状态 0申请中,1二级单位审核拒绝 2二级单位审核通过 3集团审核拒绝 4集团审核通过") |
| | | @Column(columnDefinition="int comment '申报状态'") |
| | | private Integer status; |
| | | @Schema(description = "申报类型") |