3 changed files with 71 additions and 0 deletions
@ -0,0 +1,40 @@ |
|||
package com.elink.esua.epdc.dto.item.result; |
|||
|
|||
import com.fasterxml.jackson.annotation.JsonProperty; |
|||
import lombok.Data; |
|||
import lombok.NoArgsConstructor; |
|||
|
|||
@NoArgsConstructor |
|||
@Data |
|||
public class AppealWhistleReportRejectResultDTO { |
|||
|
|||
/** |
|||
* 唯一标识 |
|||
*/ |
|||
@JsonProperty("sqid") |
|||
private String sqid; |
|||
|
|||
/** |
|||
* 驳回人 |
|||
*/ |
|||
@JsonProperty("bhr") |
|||
private String bhr; |
|||
|
|||
/** |
|||
* 驳回人唯一标识 |
|||
*/ |
|||
@JsonProperty("bhrId") |
|||
private String bhrId; |
|||
|
|||
/** |
|||
* 驳回时间 |
|||
*/ |
|||
@JsonProperty("bhsj") |
|||
private String bhsj; |
|||
|
|||
/** |
|||
* 驳回原因 |
|||
*/ |
|||
@JsonProperty("bhyy") |
|||
private String bhyy; |
|||
} |
Loading…
Reference in new issue