ソースを参照

优化签名用印功能

qitz 2 年 前
コミット
df108c15eb

+ 21
- 0
ruoyi-system/src/main/java/com/ruoyi/wisdomarbitrate/domain/entity/dept/MsSealSignRecord.java ファイルの表示

@@ -144,6 +144,27 @@ public class MsSealSignRecord {
144 144
     @Column(name = "position_ypsn_medi")
145 145
     private double positionYpsnMedi;
146 146
 
147
+    /**
148
+     * 申请人签名状态
149
+     */
150
+    @Column(name = "sign_status_apply")
151
+    private Integer signStatusApply;
152
+    /**
153
+     * 被申请人签名状态
154
+     */
155
+    @Column(name = "sign_status_response")
156
+    private Integer signStatusResponse;
157
+    /**
158
+     * 调解员签名状态
159
+     */
160
+    @Column(name = "sign_status_mediator")
161
+    private Integer signStatusMediator;
162
+    /**
163
+     * 用印状态
164
+     */
165
+    @Column(name = "seal_status")
166
+    private Integer sealStatus;
167
+
147 168
 
148 169
 
149 170
 }

+ 4
- 0
ruoyi-system/src/main/resources/mapper/wisdomarbitrate/dept/MsSealSignRecordMapper.xml ファイルの表示

@@ -23,6 +23,10 @@
23 23
     <result column="position_xorg" jdbcType="DOUBLE" property="positionXorg" />
24 24
     <result column="position_yorg" jdbcType="DOUBLE" property="positionYorg" />
25 25
     <result column="file_download_url" jdbcType="LONGVARCHAR" property="fileDownloadUrl" />
26
+    <result column="sign_status_apply" jdbcType="INTEGER" property="signStatusApply" />
27
+    <result column="sign_status_response" jdbcType="INTEGER" property="signStatusResponse" />
28
+    <result column="sign_status_mediator" jdbcType="INTEGER" property="signStatusMediator" />
29
+    <result column="seal_status" jdbcType="INTEGER" property="sealStatus" />
26 30
   </resultMap>
27 31
 
28 32