|
|
@@ -18,14 +18,21 @@ public class ResumptionNfcVo {
|
|
|
private Long checkId;
|
|
|
private String checkName;
|
|
|
private String nfccdoe;
|
|
|
- private int status = 0;
|
|
|
+ /**
|
|
|
+ * 是否已扫描。0未扫1已扫
|
|
|
+ */
|
|
|
+ private Integer status;
|
|
|
+ /**
|
|
|
+ * 是否必须扫描。1扫描,0不扫描
|
|
|
+ */
|
|
|
+ private Integer mustScan;
|
|
|
+
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
|
private Long pointId;
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
|
private Long areaId;
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
|
private Long nfcid;
|
|
|
- private Long nfcScanStatus;
|
|
|
private Long scanMethod;
|
|
|
private String img;
|
|
|
|