Newer
Older
huludao / src / main / java / com / newfiber / api / pc / model / entity / SmsNoticeEntity.java
@新烽开发者 新烽开发者 on 19 Jul 601 bytes init
package com.newfiber.api.pc.model.entity;

import lombok.Data;

import java.util.Map;

/**
 * @author : zhangjun
 * @Project_name:sampling-java-server
 * @date:2020/4/16 10:40
 * @email:505724729@qq.com
 * @description:{todo}
 * @Exception: throw {todo}
 */
@Data
public class SmsNoticeEntity {
    private String receiveMobile;
    private Long content;
    private String platform;
    private int sendType;
    private int templateType;
    private String timeStamp;
    private String signName;
    private String templateCode;
    private String token;
    private Map<String,String> variable;
}