From b4c065a14f2dfa28d019469396f175c1bf6a2afa Mon Sep 17 00:00:00 2001 From: qiuyt Date: Sat, 5 Apr 2025 15:57:26 +0800 Subject: [PATCH] =?UTF-8?q?=E8=8D=AF=E5=93=81=E5=8A=9F=E8=83=BD=E5=A4=8D?= =?UTF-8?q?=E5=88=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../api/entity/basic/UdiRelevanceEntity.java | 17 ++++++++++++ .../glxp/api/req/basic/AddProductRequest.java | 27 +++++++++++++++++++ .../api/service/basic/UdiProductService.java | 6 +++++ 3 files changed, 50 insertions(+) diff --git a/src/main/java/com/glxp/api/entity/basic/UdiRelevanceEntity.java b/src/main/java/com/glxp/api/entity/basic/UdiRelevanceEntity.java index 30fabef61..7e3a6138b 100644 --- a/src/main/java/com/glxp/api/entity/basic/UdiRelevanceEntity.java +++ b/src/main/java/com/glxp/api/entity/basic/UdiRelevanceEntity.java @@ -324,5 +324,22 @@ public class UdiRelevanceEntity { */ private Integer manuReview; + /** + * 是否已经人工审核 0:未审核;1:已审核 + */ + @TableField(value = "drugSellingPrice") + private String drugSellingPrice; + /** + * 药品售价 + */ + @TableField(value = "drugSellingPriceTime") + private Date drugSellingPriceTime; + /** + * 是否挂网 0 否 1 是 + */ + @TableField(value = "hangingNetType") + private Integer hangingNetType; + + } diff --git a/src/main/java/com/glxp/api/req/basic/AddProductRequest.java b/src/main/java/com/glxp/api/req/basic/AddProductRequest.java index 318d45038..a69f4ef74 100644 --- a/src/main/java/com/glxp/api/req/basic/AddProductRequest.java +++ b/src/main/java/com/glxp/api/req/basic/AddProductRequest.java @@ -300,4 +300,31 @@ public class AddProductRequest { * 明细分类 */ private Integer detailSort; + + /** + * 无码类型 0、默认不是无码类型;1、部分早期未赋予追溯码;5、最小包装无追溯码;6、无追溯码;7、其他原因 + */ + private Integer notCodeType; + + /** + * 是否已经人工审核 0:未审核;1:已审核 + */ + private Integer manuReview; + private Integer bhxjsl; + + /** + * 是否已经人工审核 0:未审核;1:已审核 + */ + @TableField(value = "drugSellingPrice") + private String drugSellingPrice; + /** + * 药品售价 + */ + @TableField(value = "drugSellingPriceTime") + private Date drugSellingPriceTime; + /** + * 是否挂网 0 否 1 是 + */ + @TableField(value = "hangingNetType") + private Integer hangingNetType; } diff --git a/src/main/java/com/glxp/api/service/basic/UdiProductService.java b/src/main/java/com/glxp/api/service/basic/UdiProductService.java index 6499f3e1e..1a7686d2e 100644 --- a/src/main/java/com/glxp/api/service/basic/UdiProductService.java +++ b/src/main/java/com/glxp/api/service/basic/UdiProductService.java @@ -349,6 +349,12 @@ public class UdiProductService extends ServiceImpl