| 123456789101112131415161718192021222324252627282930313233 |
- package jnpf.message.model.sendmessageconfig;
- import lombok.Data;
- import java.util.List;
- import java.util.Date;
- import java.math.BigDecimal;
- import java.math.BigInteger;
- import com.fasterxml.jackson.annotation.JsonProperty;
- import com.alibaba.fastjson.annotation.JSONField;
- /**
- *
- *
- * 版本: V3.2.0
- * 版权: 引迈信息技术有限公司(https://www.jnpfsoft.com)
- * 作者: JNPF开发平台组
- * 日期: 2022-08-19
- */
- @Data
- public class SendConfigTestResultModel {
- /** 消息类型 **/
- private String messageType;
- /** 是否成功 **/
- private String isSuccess;
- /** 失败原因 **/
- private String result;
- }
|