@@ -25,8 +25,16 @@ public class TaskRegisterNfcVo {
@JsonSerialize(using = ToStringSerializer.class)
@ApiModelProperty(value = "NFC所属区域id")
private Long areaId;
-// @ApiModelProperty(value = "采集点名称")
-// private String checkName;
+
+ /**
+ * 区域采集点名称
+ */
+ private String nfcName;
+ * nfc编码
+ private String nfcCode;
/**
* 是否已扫描。0未扫1已扫
@@ -682,6 +682,8 @@
dn.task_data_id as taskDataId,
nfc.id as nfcId,
nfc.area_id as areaId,
+ nfc.code as nfcCode,
+ nfc.label_name as nfcName,
p.required as mustScan,
if(dn.status is null, 0, dn.status) as status,
dn.scan_method as scanMethod,