📄 mediacontent.java
字号:
package com.huawei.bass.gansu.mms.util;
import java.io.Serializable;
import com.cmcc.mm7.vasp.common.MMContentType;
public class MediaContent implements Serializable
{
/**
*
*/
private static final long serialVersionUID = 1L;
private byte[] content;
private MMContentType type;
private String id;
public MediaContent()
{
}
public void setContent(byte[] content)
{
this.content = content;
}
public byte[] getContent()
{
return content;
}
public void setType(MMContentType type)
{
this.type = type;
}
public MMContentType getType()
{
return type;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -