rk
10 小时以前 cf17c2f7012fc4351f66c71d66a4aa3a9fe9e34a
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
package com.doumee.config.xyy.dto;
 
 
/**
 * 设置打印机语音类型请求参数
 *
 * @author RabyGao
 * @date Aug 7, 2019
 */
public class SetVoiceTypeRequest extends RestRequest {
 
    /**
     * 打印机编号
     */
    private String sn;
 
    /**
     * 声音类型: 0真人语音(大) 1真人语音(中) 2真人语音(小) 3 嘀嘀声  4 静音
     */
    private Integer voiceType;
 
    public String getSn() {
        return sn;
    }
 
    public void setSn(String sn) {
        this.sn = sn;
    }
 
    public Integer getVoiceType() {
        return voiceType;
    }
 
    public void setVoiceType(Integer voiceType) {
        this.voiceType = voiceType;
    }
}