From 13802f0ac4a8954076862c8b66cfb95e5309d325 Mon Sep 17 00:00:00 2001 From: "15881625488@163.com" <15881625488@163.com> Date: Wed, 21 Jan 2026 11:35:22 +0800 Subject: [PATCH] =?UTF-8?q?fix=EF=BC=9A[=E8=B5=84=E6=BA=90=E5=BA=93?= =?UTF-8?q?=E7=AE=A1=E7=90=86]=E9=BA=BB=E7=B2=BE=E8=8D=AF=E7=94=B3?= =?UTF-8?q?=E8=AF=B7=E5=8D=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/hxhq/business/domain/StudyFormApply.java | 37 ++++++++++++ .../service/impl/StudyFormApplyServiceImpl.java | 70 +++++++++++++++++++--- 2 files changed, 99 insertions(+), 8 deletions(-) diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/StudyFormApply.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/StudyFormApply.java index 043750d..9fbb130 100644 --- a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/StudyFormApply.java +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/StudyFormApply.java @@ -2,6 +2,7 @@ package com.hxhq.business.domain; import java.util.Date; +import com.baomidou.mybatisplus.annotation.FieldStrategy; import com.baomidou.mybatisplus.annotation.TableField; import com.fasterxml.jackson.annotation.JsonFormat; import com.baomidou.mybatisplus.annotation.TableName; @@ -26,6 +27,18 @@ public class StudyFormApply extends MpBaseEntity /** 所属试验学科id */ private Long studySubjectId; + /** 试验id */ + @TableField(updateStrategy = FieldStrategy.IGNORED) + private Long syId; + + /** 部门id */ + @TableField(updateStrategy = FieldStrategy.IGNORED) + private Long bmId; + + /** sdid */ + @TableField(updateStrategy = FieldStrategy.IGNORED) + private Long sdId; + /** 表单编号 */ private String bdbh; @@ -117,6 +130,30 @@ public class StudyFormApply extends MpBaseEntity @TableField(exist = false) private String studyMc; + public Long getSyId() { + return syId; + } + + public void setSyId(Long syId) { + this.syId = syId; + } + + public Long getBmId() { + return bmId; + } + + public void setBmId(Long bmId) { + this.bmId = bmId; + } + + public Long getSdId() { + return sdId; + } + + public void setSdId(Long sdId) { + this.sdId = sdId; + } + public String getTemplateMcEn() { return templateMcEn; } diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/StudyFormApplyServiceImpl.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/StudyFormApplyServiceImpl.java index 4238279..778ad17 100644 --- a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/StudyFormApplyServiceImpl.java +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/StudyFormApplyServiceImpl.java @@ -258,6 +258,24 @@ public class StudyFormApplyServiceImpl extends ServiceImpl