TBlFkcmdTransCmdParam.java 1003 Bytes
Newer Older
yuquan.zhu committed
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
package cn.timer.api.bean.kqgl;

/**
 * 操作员向机器发出的指令时执行指令所需的参数数据
 * 
 * @author Administrator
 * 
 */
public class TBlFkcmdTransCmdParam {

	private String transId;// 为跟踪操作员向机器发出的指令的用于唯一识别号码。 这个字段的价必须唯一对每一条记录
	private String deviceId;// 为识别接受指令的机器的识别号码
	private byte[] cmdParam;// 保存指令参数数据。有些指令的参数数据的长度很大。
							// (SET_ENROLL_DATA,SET_USER_INFO)
							// 所以这字段的类型设计成二进制数据

	public String getTransId() {
		return transId;
	}

	public void setTransId(String transId) {
		this.transId = transId;
	}

	public String getDeviceId() {
		return deviceId;
	}

	public void setDeviceId(String deviceId) {
		this.deviceId = deviceId;
	}

	public byte[] getCmdParam() {
		return cmdParam;
	}
	public void setCmdParam(byte[] cmdParam) {
		this.cmdParam = cmdParam;
	}

	

}