巡检增加状态字段
This commit is contained in:
parent
93ad5f5d3e
commit
5410712364
|
|
@ -1808,6 +1808,7 @@ public class QmsIssueTicketControllerService {
|
|||
vo.setCreateTime(ticket.getCreateTime());
|
||||
vo.setImpactQuantity(ticket.getImpactQuantity());
|
||||
vo.setDirectorId(ticket.getApprovalUserId());
|
||||
vo.setStatus(ticket.getStatus());
|
||||
vo.setTicketType("巡检");
|
||||
vo.setIncidentLocation(ticket.getIncidentLocation());
|
||||
vo.setIncidentDescription(ticket.getIncidentDescription());
|
||||
|
|
|
|||
|
|
@ -67,6 +67,11 @@ public class QmsInspectionTicketDetailVO {
|
|||
*/
|
||||
private Long directorId;
|
||||
|
||||
/**
|
||||
* 工单状态:0=待流转,1=处理中,2=已完成
|
||||
*/
|
||||
private Short status;
|
||||
|
||||
/**
|
||||
* 工单类型(巡检)
|
||||
*/
|
||||
|
|
|
|||
Loading…
Reference in New Issue