You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
420 B
Java
20 lines
420 B
Java
package com.glxp.api.entity.system;
|
|
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class SysPdaKeyEntity {
|
|
private String id;
|
|
private String imei;
|
|
private int isCheck;
|
|
private String companyName;
|
|
private String phone;
|
|
private String contact;
|
|
private String imeiKey;
|
|
private String date;
|
|
private String creditNum;
|
|
private int checkCode;
|
|
private String rgType;
|
|
private String remark;
|
|
}
|