Merge remote-tracking branch 'origin/0.8.X' into 0.8.X

# Conflicts:
#	klp-admin/src/main/resources/application.yml
This commit is contained in:
2025-08-02 13:14:16 +08:00
17 changed files with 211 additions and 255 deletions

View File

@@ -1,6 +1,5 @@
package com.klp.domain;
import jdk.jfr.DataAmount;
import lombok.Data;
/**

View File

@@ -45,6 +45,10 @@ public class WmsPurchasePlanDetail extends BaseEntity {
* 单位
*/
private String unit;
/**
* 附件
*/
private String annex;
/**
* 状态( 0=新建1=在途2=到货3=待审核4=采购完成)
*/

View File

@@ -50,6 +50,11 @@ public class WmsPurchasePlanDetailBo extends BaseEntity {
*/
private String unit;
/**
* 附件
*/
private String annex;
/**
* 状态( 0=新建1=在途2=到货3=待审核4=采购完成)
*/

View File

@@ -0,0 +1,19 @@
package com.klp.domain.vo;
import lombok.Data;
@Data
public class RecognizeTextVo {
/**
* 识别后的文本
*/
private String text;
public RecognizeTextVo() {
}
public RecognizeTextVo(String text) {
this.text = text;
}
}

View File

@@ -56,6 +56,12 @@ public class WmsPurchasePlanDetailVo {
@ExcelProperty(value = "单位")
private String unit;
/**
* 附件
*/
@ExcelProperty(value = "附件")
private String annex;
/**
* 状态( 0=新建1=在途2=到货3=待审核4=采购完成)
*/

View File

@@ -80,5 +80,10 @@ public class WmsStockVo {
@ExcelProperty(value = "备注")
private String remark;
/**
* 仓库/库区名称
*/
@ExcelProperty(value = "仓库/库区名称")
private String warehouseName;
}