|
|
|
@ -1,6 +1,7 @@
|
|
|
|
|
package com.ruoyi.programManagement.entity.response;
|
|
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
|
|
import com.ruoyi.common.annotation.Excel;
|
|
|
|
@ -18,29 +19,14 @@ public class BPlanEnterpriseZhifaResponse {
|
|
|
|
|
/**
|
|
|
|
|
* 编号
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "编号")
|
|
|
|
|
@Excel(name = "编号")
|
|
|
|
|
@TableId(type = IdType.AUTO)
|
|
|
|
|
private Long id;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 检查表id
|
|
|
|
|
*/
|
|
|
|
|
@ApiModelProperty(value = "检查表id")
|
|
|
|
|
|
|
|
|
|
private String longId;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 计划id
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "计划id")
|
|
|
|
|
private Long planId;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 企业id
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "企业id")
|
|
|
|
|
private String enterpriseId;
|
|
|
|
|
|
|
|
|
@ -48,7 +34,7 @@ public class BPlanEnterpriseZhifaResponse {
|
|
|
|
|
* 创建者ID
|
|
|
|
|
*/
|
|
|
|
|
@ApiModelProperty(value = "创建者ID")
|
|
|
|
|
private Integer createId;
|
|
|
|
|
private Long createId;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 创建者
|
|
|
|
@ -59,9 +45,9 @@ public class BPlanEnterpriseZhifaResponse {
|
|
|
|
|
/**
|
|
|
|
|
* 创建时间
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
|
|
@Excel(name = "年份", dateFormat = "yyyy-MM-dd")
|
|
|
|
|
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd ", timezone = "GMT+8")
|
|
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
|
|
|
|
@ApiModelProperty(value = "创建时间")
|
|
|
|
|
private Date createTime;
|
|
|
|
|
|
|
|
|
@ -69,7 +55,7 @@ public class BPlanEnterpriseZhifaResponse {
|
|
|
|
|
* 更新者ID
|
|
|
|
|
*/
|
|
|
|
|
@ApiModelProperty(value = "更新者ID")
|
|
|
|
|
private Integer updateId;
|
|
|
|
|
private Long updateId;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 更新者
|
|
|
|
@ -105,35 +91,102 @@ public class BPlanEnterpriseZhifaResponse {
|
|
|
|
|
/**
|
|
|
|
|
* 行政区划
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "行政区划")
|
|
|
|
|
@Excel(name = "行政区划")
|
|
|
|
|
private String district;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 企业名称
|
|
|
|
|
* 计划年份
|
|
|
|
|
*/
|
|
|
|
|
@ApiModelProperty(value = "计划年份")
|
|
|
|
|
@Excel(name = "计划年份")
|
|
|
|
|
private String plannedYear;
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "企业名称")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 是否重点企业1:是2:否
|
|
|
|
|
*/
|
|
|
|
|
@ApiModelProperty(value = "是否重点企业1:是2:否")
|
|
|
|
|
private Integer isPoint;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 企业主表名称
|
|
|
|
|
*/
|
|
|
|
|
@TableField(exist = false)
|
|
|
|
|
@ApiModelProperty(value = "企业主表名称")
|
|
|
|
|
private String entprName;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 企业名称
|
|
|
|
|
*/
|
|
|
|
|
@Excel(name = "企业名称")
|
|
|
|
|
@ApiModelProperty(value = "企业名称")
|
|
|
|
|
private String enterpriseName;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 计划年份
|
|
|
|
|
* 执法排序
|
|
|
|
|
*/
|
|
|
|
|
@ApiModelProperty(value = "执法排序")
|
|
|
|
|
private Long lawSort;
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "计划年份")
|
|
|
|
|
@Excel(name = "计划年份")
|
|
|
|
|
private String plannedYear;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 检查状态
|
|
|
|
|
* 执法地区
|
|
|
|
|
*/
|
|
|
|
|
@ApiModelProperty(value = "执法地区")
|
|
|
|
|
private String lawAreas;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 执法级别
|
|
|
|
|
*/
|
|
|
|
|
@ApiModelProperty(value = "执法级别")
|
|
|
|
|
private String lawLevel;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 执法层级
|
|
|
|
|
*/
|
|
|
|
|
@ApiModelProperty(value = "执法层级")
|
|
|
|
|
private String lawHierarchy;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 计划月份
|
|
|
|
|
*/
|
|
|
|
|
@ApiModelProperty(value = "计划月份")
|
|
|
|
|
private String plannedMonth;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 0:草稿 1:正式
|
|
|
|
|
*/
|
|
|
|
|
@ApiModelProperty(value = "0:草稿 1:正式")
|
|
|
|
|
private Integer status =0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "检查状态 1=已检查,2=未检查")
|
|
|
|
|
@Excel(name = "检查状态",readConverterExp = "1=已检查,2=未检查")
|
|
|
|
|
private String checkStatus;
|
|
|
|
|
/**
|
|
|
|
|
* 0:未检查 1:已检查
|
|
|
|
|
*/
|
|
|
|
|
@ApiModelProperty(value = "0:未检查 1:已检查")
|
|
|
|
|
private Integer checkStatus;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 检查id
|
|
|
|
|
*/
|
|
|
|
|
@ApiModelProperty(value = "检查id")
|
|
|
|
|
private Integer checkId;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 1当月 2提前 3滞后
|
|
|
|
|
*/
|
|
|
|
|
@ApiModelProperty(value = "1当月 2提前 3滞后")
|
|
|
|
|
private Integer checkAgeing;
|
|
|
|
|
}
|
|
|
|
|