3 changed files with 77 additions and 0 deletions
@ -0,0 +1,46 @@ |
|||
package com.elink.esua.epdc.dto.item.result; |
|||
|
|||
import com.fasterxml.jackson.annotation.JsonProperty; |
|||
import lombok.Data; |
|||
import lombok.NoArgsConstructor; |
|||
|
|||
@NoArgsConstructor |
|||
@Data |
|||
public class AppealMsgResultDTO { |
|||
|
|||
/** |
|||
* 唯一标识 |
|||
*/ |
|||
@JsonProperty("sqid") |
|||
private String sqid; |
|||
|
|||
/** |
|||
* 接收人 |
|||
*/ |
|||
@JsonProperty("jsr") |
|||
private String jsr; |
|||
|
|||
/** |
|||
* 发送时间 |
|||
*/ |
|||
@JsonProperty("fssj") |
|||
private String fssj; |
|||
|
|||
/** |
|||
* 手机号码 |
|||
*/ |
|||
@JsonProperty("sjhm") |
|||
private String sjhm; |
|||
|
|||
/** |
|||
* 信息内容 |
|||
*/ |
|||
@JsonProperty("xxnr") |
|||
private String xxnr; |
|||
|
|||
/** |
|||
* 类型 0:短信;1:微信 |
|||
*/ |
|||
@JsonProperty("lx") |
|||
private String lx; |
|||
} |
|||
Loading…
Reference in new issue