1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package com.yanzuoguang.wxxcx.servicecustomer.uploadtempmedia;
import com.yanzuoguang.wxxcx.base.WxXcxResponseBaseError;
/**
* 把媒体文件上传到微信服务器 响应
*
* @author 李贤军
*/
public class WxXcxCustomerServiceMessageUploadTempMediaRes extends WxXcxResponseBaseError {
/**
* 文件类型
*/
private String type;
/**
* 媒体文件上传后,获取标识,3天内有效。
*/
private String media_id;
/**
* 媒体文件上传时间戳
*/
private double created_at;
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getMedia_id() {
return media_id;
}
public void setMedia_id(String media_id) {
this.media_id = media_id;
}
public double getCreated_at() {
return created_at;
}
public void setCreated_at(double created_at) {
this.created_at = created_at;
}
}