puzhibing
2023-08-14 753c4aede53b07041841d9aa94859b59e366bd5d
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
package com.stylefeng.guns.modular.system.util.MallBook.model;
 
 
/**
 * @author huangh
 * @version 1.0
 * @description
 * @date 2021/9/18 16:10
 */
 
public class ImageUpload {
    /**业务类型编号,必须和接口文档一致*/
    public static String SERVICE_CODE = "fileUpload";
    //业务系统会员编号
    private String merUserId;
    //文件名称
    private String file;
    //文件
    private String name;
 
    public String getMerUserId() {
        return merUserId;
    }
 
    public void setMerUserId(String merUserId) {
        this.merUserId = merUserId;
    }
 
    public String getFile() {
        return file;
    }
 
    public void setFile(String file) {
        this.file = file;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
}