Merge branches 'ext-dev' and 'test' of http://git.estsh.com/i3-IMPP/i3plus-pojo into ext-dev
commit
2acc57e72d
@ -0,0 +1,31 @@
|
||||
package cn.estsh.i3plus.pojo.ptl.model;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.DataInputStream;
|
||||
import java.io.DataOutputStream;
|
||||
import java.net.Socket;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @Author: jokelin
|
||||
* @Date: 2021/6/8 2:12 PM
|
||||
* @Modify:
|
||||
*/
|
||||
@Data
|
||||
public class MgnBjAblePickModel {
|
||||
|
||||
private Socket socket = null;
|
||||
|
||||
private String organizeCode;
|
||||
private String areaNo;
|
||||
private String clientInfo;
|
||||
private String ip;
|
||||
private Integer port;
|
||||
|
||||
private Integer timeout = 3000;
|
||||
private Integer sleepTime = 2000;
|
||||
|
||||
private DataOutputStream bw;
|
||||
private DataInputStream br;
|
||||
}
|
Loading…
Reference in New Issue