Logo white

杜方 / CYTAndroid4.0

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • CYTAndroid4.0
  • src
  • com
  • hdx
  • lib
  • serial
  • SerialParam.java
  • 1、畅游通核销app源码提交;
    3c2353cd
    杜方 authored
    2023-05-17 10:30:02 +0800  
    Browse Code »
SerialParam.java 265 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
package com.hdx.lib.serial;

public class SerialParam
{
  public int baudrate;
  public String device;
  public int openFlag;

  public SerialParam(int baud, String dev, int flag)
  {
    this.baudrate = baud;
    this.device = dev;
    this.openFlag = flag;
  }
}