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