⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mediacontent.java

📁 应用于华为中国移动甘肃项目组的彩信发送平台全套代码
💻 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 + -