fix:标签二维码用json字符串,暂时只有code;
This commit is contained in:
@@ -225,7 +225,7 @@ public class MaterialInfomationRespVO {
|
||||
public String getQrCode() {
|
||||
MaterialQrCode qrCode = new MaterialQrCode();
|
||||
qrCode.setCode(this.code);
|
||||
qrCode.setName(this.name);
|
||||
// qrCode.setName(this.name);
|
||||
return JSONUtil.toJsonStr(qrCode);
|
||||
}
|
||||
|
||||
|
||||
@@ -111,7 +111,7 @@ public class MaterialInventoryInboundDetailRespVO {
|
||||
public String getQrCode() {
|
||||
MaterialQrCode qrCode = new MaterialQrCode();
|
||||
qrCode.setCode(this.infomationCode);
|
||||
qrCode.setName(this.infomationName);
|
||||
// qrCode.setName(this.infomationName);
|
||||
return JSONUtil.toJsonStr(qrCode);
|
||||
}
|
||||
|
||||
|
||||
@@ -11,20 +11,20 @@ public class MaterialQrCode {
|
||||
* 编号
|
||||
*/
|
||||
private String code;
|
||||
/**
|
||||
* 名称
|
||||
*/
|
||||
private String name;
|
||||
/**
|
||||
* 批次号
|
||||
*/
|
||||
private String batchNo;
|
||||
/**
|
||||
* 规格
|
||||
*/
|
||||
private String specification;
|
||||
/**
|
||||
* 制造商
|
||||
*/
|
||||
private String manufacturer;
|
||||
// /**
|
||||
// * 名称
|
||||
// */
|
||||
// private String name;
|
||||
// /**
|
||||
// * 批次号
|
||||
// */
|
||||
// private String batchNo;
|
||||
// /**
|
||||
// * 规格
|
||||
// */
|
||||
// private String specification;
|
||||
// /**
|
||||
// * 制造商
|
||||
// */
|
||||
// private String manufacturer;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user