You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
394 B
Java
18 lines
394 B
Java
package com.ipsos.base.domain;
|
|
|
|
import java.io.Serializable;
|
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class SysMsgChannel implements Serializable {
|
|
|
|
@ApiModelProperty("消息渠道ID")
|
|
private Long msgChannelId;
|
|
|
|
@ApiModelProperty("消息渠道名称")
|
|
private String channelName;
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
} |