package com.panzhihua.westcommittee.model.dto;
|
|
import lombok.Data;
|
|
import java.util.Date;
|
|
@Data
|
public class ComplaintTimeout {
|
private Long complaintId;
|
// private String title;
|
private Long createBy;
|
private Integer reportType;
|
private Long superiorId;
|
private Date closingTime;
|
|
private Integer nowLevel;
|
|
private Integer assignStatus;
|
|
/**
|
* assignStatus =1 assignPersonId为部门id
|
*/
|
private Integer assignPersonId;
|
|
private String serialNumber;
|
|
}
|