Merge branch 'dev_2307' of http://182.92.169.222:3000/zhc077/projectManagement into dev_2307
commit
f84d5ef57e
27 changed files with 817 additions and 210 deletions
@ -0,0 +1,143 @@ |
|||||||
|
package org.jeecg.modules.demo.bugx.entity; |
||||||
|
|
||||||
|
import java.io.Serializable; |
||||||
|
|
||||||
|
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 lombok.Data; |
||||||
|
import com.fasterxml.jackson.annotation.JsonFormat; |
||||||
|
import org.jeecgframework.poi.excel.annotation.ExcelIgnore; |
||||||
|
import org.springframework.format.annotation.DateTimeFormat; |
||||||
|
import org.jeecgframework.poi.excel.annotation.Excel; |
||||||
|
import org.jeecg.common.aspect.annotation.Dict; |
||||||
|
import io.swagger.annotations.ApiModel; |
||||||
|
import io.swagger.annotations.ApiModelProperty; |
||||||
|
import lombok.EqualsAndHashCode; |
||||||
|
import lombok.experimental.Accessors; |
||||||
|
|
||||||
|
/** |
||||||
|
* @Description: BUG管理 |
||||||
|
* @Author: jeecg-boot |
||||||
|
* @Date: 2023-04-11 |
||||||
|
* @Version: V1.0 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
@Accessors(chain = true) |
||||||
|
@EqualsAndHashCode(callSuper = false) |
||||||
|
@ApiModel(value="bugx对象", description="BUG管理") |
||||||
|
public class BugxExportDto implements Serializable { |
||||||
|
private static final long serialVersionUID = 1L; |
||||||
|
|
||||||
|
/**主键*/ |
||||||
|
@ApiModelProperty(value = "主键") |
||||||
|
private java.lang.String id; |
||||||
|
/**创建人*/ |
||||||
|
@ApiModelProperty(value = "创建人") |
||||||
|
private java.lang.String createBy; |
||||||
|
/**创建日期*/ |
||||||
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss") |
||||||
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") |
||||||
|
@ApiModelProperty(value = "创建日期") |
||||||
|
private java.util.Date createTime; |
||||||
|
/**更新人*/ |
||||||
|
@ApiModelProperty(value = "更新人") |
||||||
|
private java.lang.String updateBy; |
||||||
|
/**更新日期*/ |
||||||
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss") |
||||||
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") |
||||||
|
@ApiModelProperty(value = "更新日期") |
||||||
|
private java.util.Date updateTime; |
||||||
|
/**BUG编码*/ |
||||||
|
@Excel(name = "BUG编码", width = 15) |
||||||
|
@ApiModelProperty(value = "BUG编码") |
||||||
|
private java.lang.String bugCode; |
||||||
|
/**BUG类型*/ |
||||||
|
@ExcelIgnore() |
||||||
|
@ApiModelProperty(value = "BUG类型") |
||||||
|
@Dict(dicCode = "bug_type") |
||||||
|
private java.lang.Integer type; |
||||||
|
|
||||||
|
@TableField(exist = false) |
||||||
|
@Excel(name = "BUG类型", width = 15) |
||||||
|
private java.lang.String typeName; |
||||||
|
/**项目id*/ |
||||||
|
@Excel(name = "项目", width = 15) |
||||||
|
@ApiModelProperty(value = "项目id") |
||||||
|
@Dict(dicCode = "id",dicText = "project_code",dictTable = "projectx") |
||||||
|
private java.lang.String projectId; |
||||||
|
/**对应模块id*/ |
||||||
|
@Excel(name = "对应模块", width = 15) |
||||||
|
@ApiModelProperty(value = "对应模块id") |
||||||
|
@Dict(dicCode = "id",dicText = "module_code",dictTable = "modulex") |
||||||
|
private java.lang.String moduleId; |
||||||
|
/**对应功能id*/ |
||||||
|
@Excel(name = "对应功能", width = 15) |
||||||
|
@ApiModelProperty(value = "对应功能id") |
||||||
|
@Dict(dicCode = "id",dicText = "function_code",dictTable = "functionx") |
||||||
|
private java.lang.String functionId; |
||||||
|
/**对应规则id*/ |
||||||
|
|
||||||
|
@ExcelIgnore |
||||||
|
@ApiModelProperty(value = "对应规则id") |
||||||
|
@Dict(dicCode = "id",dicText = "rule_code",dictTable = "rulex") |
||||||
|
private java.lang.String ruleId; |
||||||
|
|
||||||
|
@Excel(name = "对应规则", width = 15) |
||||||
|
@TableField(exist = false) |
||||||
|
private java.lang.String rulePm_desc; |
||||||
|
/**BUG等级*/ |
||||||
|
@Excel(name = "BUG等级", width = 15) |
||||||
|
@ApiModelProperty(value = "BUG等级") |
||||||
|
@Dict(dicCode = "work_level") |
||||||
|
private java.lang.Integer bugLevel; |
||||||
|
/**BUG描述*/ |
||||||
|
@Excel(name = "BUG描述", width = 15) |
||||||
|
@ApiModelProperty(value = "BUG描述") |
||||||
|
private java.lang.String pmDesc; |
||||||
|
/**BUG图片*/ |
||||||
|
@Excel(name = "BUG图片", width = 15) |
||||||
|
@ApiModelProperty(value = "BUG图片") |
||||||
|
private java.lang.String bugPic; |
||||||
|
/**发布时间*/ |
||||||
|
@Excel(name = "发布时间", width = 15, format = "yyyy-MM-dd") |
||||||
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss") |
||||||
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") |
||||||
|
@ApiModelProperty(value = "发布时间") |
||||||
|
private java.util.Date publishTime; |
||||||
|
/**提交内容*/ |
||||||
|
@Excel(name = "提交内容", width = 15) |
||||||
|
@ApiModelProperty(value = "提交内容") |
||||||
|
private java.lang.String submitContent; |
||||||
|
/**提交图片*/ |
||||||
|
@Excel(name = "提交图片", width = 15) |
||||||
|
@ApiModelProperty(value = "提交图片") |
||||||
|
private java.lang.String submitPic; |
||||||
|
/**责任人*/ |
||||||
|
@Excel(name = "责任人", width = 15) |
||||||
|
@ApiModelProperty(value = "责任人") |
||||||
|
private java.lang.String managerUsers; |
||||||
|
/**BUG状态*/ |
||||||
|
@ExcelIgnore |
||||||
|
@ApiModelProperty(value = "BUG状态") |
||||||
|
@Dict(dicCode = "bug_status") |
||||||
|
private java.lang.Integer bugStatus; |
||||||
|
|
||||||
|
@TableField(exist = false) |
||||||
|
@Excel(name = "BUG状态", width = 15) |
||||||
|
private java.lang.String bugStatusName; |
||||||
|
|
||||||
|
/**提交时间*/ |
||||||
|
@Excel(name = "提交时间", width = 15, format = "yyyy-MM-dd") |
||||||
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss") |
||||||
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") |
||||||
|
@ApiModelProperty(value = "提交时间") |
||||||
|
private java.util.Date submitTime; |
||||||
|
/**审核时间*/ |
||||||
|
@Excel(name = "审核时间", width = 15, format = "yyyy-MM-dd") |
||||||
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss") |
||||||
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") |
||||||
|
@ApiModelProperty(value = "审核时间") |
||||||
|
private java.util.Date auditTime; |
||||||
|
} |
Loading…
Reference in new issue