yuansh 2 years ago
parent
commit
7f802112d7

+ 3 - 0
jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/oa/entity/IncidentTicket.java

@@ -222,6 +222,9 @@ public class IncidentTicket implements Serializable {
     private String state;
 	//未处理、已完结
     private String stateText;
+    //部门
+	@Excel(name = "部门", width = 15)
+    private String department;
 
 	/**
 	 * 订单备注

+ 3 - 0
jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/oa/vo/IncidentTicketPage.java

@@ -221,6 +221,9 @@ public class IncidentTicketPage {
 	@Excel(name = "订单备注", width = 15)
 	private String orderRemarks;
 
+	@Excel(name = "部门", width = 15)
+	private String department;
+
 	@ExcelCollection(name="森_工厂质量事故单-子表")
 	@ApiModelProperty(value = "森_工厂质量事故单-子表")
 	private List<IncidentTicketChildren> incidentTicketChildrenList;