瀏覽代碼

企业资质备案-回执单列表

heguanxun 9 月之前
父節點
當前提交
43dc29fc9b

+ 1 - 1
snowy-admin-web/src/api/biz/qyCheckListApi.js

@@ -6,7 +6,7 @@ const request = (url, ...arg) => baseRequest(`/biz/qychecklist/` + url, ...arg)
  * 回执单列表Api接口管理器
  *
  * @author hgx
- * @date  2024/07/05 10:49
+ * @date  2024/07/05 14:48
  **/
 export default {
 	// 获取回执单列表分页

+ 6 - 6
snowy-admin-web/src/views/biz/qychecklist/detail.vue

@@ -14,18 +14,18 @@
 		<a-form ref="formRef" :model="formData" :rules="formRules" layout="vertical">
             <a-row :gutter="16">
                 <a-col :span="12">
-                    <a-form-item label="企业名称:" name="qyName">
-                        <a-input v-model:value="formData.qyName" :disabled="isView" placeholder="请输入企业名称" allow-clear />
+                    <a-form-item label="企业名称:" name="companyName">
+                        <a-input v-model:value="formData.companyName" :disabled="isView" placeholder="请输入企业名称" allow-clear />
                     </a-form-item>
                 </a-col>
                 <a-col :span="12">
-                    <a-form-item label="单据类型:" name="djType">
-                        <a-input v-model:value="formData.djType" :disabled="isView" placeholder="请输入单据类型" allow-clear />
+                    <a-form-item label="单据类型:" name="applyType">
+                        <a-input v-model:value="formData.applyType" :disabled="isView" placeholder="请输入单据类型" allow-clear />
                     </a-form-item>
                 </a-col>
                 <a-col :span="12">
-                    <a-form-item label="审核状态:" name="checkType">
-                        <a-input v-model:value="formData.checkType" :disabled="isView" placeholder="请输入审核状态" allow-clear />
+                    <a-form-item label="审核状态:" name="status">
+                        <a-input v-model:value="formData.status" :disabled="isView" placeholder="请输入审核状态" allow-clear />
                     </a-form-item>
                 </a-col>
                 <a-col :span="12">

+ 3 - 3
snowy-admin-web/src/views/biz/qychecklist/index.vue

@@ -61,15 +61,15 @@
 	const columns = [
 		{
 			title: '企业名称',
-			dataIndex: 'qyName',
+			dataIndex: 'companyName',
 		},
 		{
 			title: '单据类型',
-			dataIndex: 'djType',
+			dataIndex: 'applyType',
 		},
 		{
 			title: '审核状态',
-			dataIndex: 'checkType',
+			dataIndex: 'status',
 		},
 		{
 			title: '审核人',

+ 7 - 7
snowy-plugin/snowy-plugin-biz/src/main/java/vip/xiaonuo/biz/modular/qychecklist/controller/QyCheckListController.java

@@ -45,7 +45,7 @@ import java.util.HashMap;
  * 回执单列表控制器
  *
  * @author hgx
- * @date  2024/07/05 10:49
+ * @date  2024/07/05 14:48
  */
 @Tag(name = "回执单列表控制器")
 @RestController
@@ -59,7 +59,7 @@ public class QyCheckListController {
      * 获取回执单列表分页
      *
      * @author hgx
-     * @date  2024/07/05 10:49
+     * @date  2024/07/05 14:48
      */
     @Operation(summary = "获取回执单列表分页")
     @SaCheckPermission("/biz/qychecklist/page")
@@ -72,7 +72,7 @@ public class QyCheckListController {
      * 添加回执单列表
      *
      * @author hgx
-     * @date  2024/07/05 10:49
+     * @date  2024/07/05 14:48
      */
     @Operation(summary = "添加回执单列表")
     @CommonLog("添加回执单列表")
@@ -87,7 +87,7 @@ public class QyCheckListController {
      * 编辑回执单列表
      *
      * @author hgx
-     * @date  2024/07/05 10:49
+     * @date  2024/07/05 14:48
      */
     @Operation(summary = "编辑回执单列表")
     @CommonLog("编辑回执单列表")
@@ -102,7 +102,7 @@ public class QyCheckListController {
      * 导出回执单列表
      *
      * @author hgx
-     * @date  2024/07/05 10:49
+     * @date  2024/07/05 14:48
      */
     @Operation(summary = "导出回执单列表")
     @CommonLog("导出回执单列表")
@@ -147,7 +147,7 @@ public class QyCheckListController {
      * 删除回执单列表
      *
      * @author hgx
-     * @date  2024/07/05 10:49
+     * @date  2024/07/05 14:48
      */
     @Operation(summary = "删除回执单列表")
     @CommonLog("删除回执单列表")
@@ -163,7 +163,7 @@ public class QyCheckListController {
      * 获取回执单列表详情
      *
      * @author hgx
-     * @date  2024/07/05 10:49
+     * @date  2024/07/05 14:48
      */
     @Operation(summary = "获取回执单列表详情")
     @SaCheckPermission("/biz/qychecklist/detail")

+ 4 - 4
snowy-plugin/snowy-plugin-biz/src/main/java/vip/xiaonuo/biz/modular/qychecklist/entity/QyCheckList.java

@@ -24,7 +24,7 @@ import java.util.Date;
  * 回执单列表实体
  *
  * @author hgx
- * @date  2024/07/05 10:49
+ * @date  2024/07/05 14:48
  **/
 @Getter
 @Setter
@@ -42,19 +42,19 @@ public class QyCheckList {
     @Schema(description = "企业名称")
     @ColumnWidth(12)
     @ExcelProperty(index = 1,value = "企业名称")
-    private String qyName;
+    private String companyName;
 
     /** 单据类型 */
     @Schema(description = "单据类型")
     @ColumnWidth(12)
     @ExcelProperty(index = 2,value = "单据类型")
-    private String djType;
+    private String applyType;
 
     /** 审核状态 */
     @Schema(description = "审核状态")
     @ColumnWidth(12)
     @ExcelProperty(index = 3,value = "审核状态")
-    private String checkType;
+    private String status;
 
     /** 审核人 */
     @Schema(description = "审核人")

+ 1 - 1
snowy-plugin/snowy-plugin-biz/src/main/java/vip/xiaonuo/biz/modular/qychecklist/enums/QyCheckListEnum.java

@@ -18,7 +18,7 @@ import lombok.Getter;
  * 回执单列表枚举
  *
  * @author hgx
- * @date  2024/07/05 10:49
+ * @date  2024/07/05 14:48
  **/
 @Getter
 public enum QyCheckListEnum {

+ 1 - 1
snowy-plugin/snowy-plugin-biz/src/main/java/vip/xiaonuo/biz/modular/qychecklist/mapper/QyCheckListMapper.java

@@ -19,7 +19,7 @@ import vip.xiaonuo.biz.modular.qychecklist.entity.QyCheckList;
  * 回执单列表Mapper接口
  *
  * @author hgx
- * @date  2024/07/05 10:49
+ * @date  2024/07/05 14:48
  **/
 public interface QyCheckListMapper extends BaseMapper<QyCheckList> {
 }

+ 4 - 4
snowy-plugin/snowy-plugin-biz/src/main/java/vip/xiaonuo/biz/modular/qychecklist/param/QyCheckListAddParam.java

@@ -25,7 +25,7 @@ import java.util.Date;
  * 回执单列表添加参数
  *
  * @author hgx
- * @date  2024/07/05 10:49
+ * @date  2024/07/05 14:48
  **/
 @Getter
 @Setter
@@ -33,15 +33,15 @@ public class QyCheckListAddParam {
 
     /** 企业名称 */
     @Schema(description = "企业名称")
-    private String qyName;
+    private String companyName;
 
     /** 单据类型 */
     @Schema(description = "单据类型")
-    private String djType;
+    private String applyType;
 
     /** 审核状态 */
     @Schema(description = "审核状态")
-    private String checkType;
+    private String status;
 
     /** 审核人 */
     @Schema(description = "审核人")

+ 4 - 4
snowy-plugin/snowy-plugin-biz/src/main/java/vip/xiaonuo/biz/modular/qychecklist/param/QyCheckListEditParam.java

@@ -25,7 +25,7 @@ import java.util.Date;
  * 回执单列表编辑参数
  *
  * @author hgx
- * @date  2024/07/05 10:49
+ * @date  2024/07/05 14:48
  **/
 @Getter
 @Setter
@@ -38,15 +38,15 @@ public class QyCheckListEditParam {
 
     /** 企业名称 */
     @Schema(description = "企业名称")
-    private String qyName;
+    private String companyName;
 
     /** 单据类型 */
     @Schema(description = "单据类型")
-    private String djType;
+    private String applyType;
 
     /** 审核状态 */
     @Schema(description = "审核状态")
-    private String checkType;
+    private String status;
 
     /** 审核人 */
     @Schema(description = "审核人")

+ 1 - 1
snowy-plugin/snowy-plugin-biz/src/main/java/vip/xiaonuo/biz/modular/qychecklist/param/QyCheckListIdParam.java

@@ -22,7 +22,7 @@ import jakarta.validation.constraints.NotBlank;
  * 回执单列表Id参数
  *
  * @author hgx
- * @date  2024/07/05 10:49
+ * @date  2024/07/05 14:48
  **/
 @Getter
 @Setter

+ 1 - 1
snowy-plugin/snowy-plugin-biz/src/main/java/vip/xiaonuo/biz/modular/qychecklist/param/QyCheckListPageParam.java

@@ -22,7 +22,7 @@ import java.util.Date;
  * 回执单列表查询参数
  *
  * @author hgx
- * @date  2024/07/05 10:49
+ * @date  2024/07/05 14:48
  **/
 @Getter
 @Setter

+ 7 - 7
snowy-plugin/snowy-plugin-biz/src/main/java/vip/xiaonuo/biz/modular/qychecklist/service/QyCheckListService.java

@@ -26,7 +26,7 @@ import java.util.List;
  * 回执单列表Service接口
  *
  * @author hgx
- * @date  2024/07/05 10:49
+ * @date  2024/07/05 14:48
  **/
 public interface QyCheckListService extends IService<QyCheckList> {
 
@@ -34,7 +34,7 @@ public interface QyCheckListService extends IService<QyCheckList> {
      * 获取回执单列表分页
      *
      * @author hgx
-     * @date  2024/07/05 10:49
+     * @date  2024/07/05 14:48
      */
     Page<QyCheckList> page(QyCheckListPageParam qyCheckListPageParam);
 
@@ -42,7 +42,7 @@ public interface QyCheckListService extends IService<QyCheckList> {
      * 添加回执单列表
      *
      * @author hgx
-     * @date  2024/07/05 10:49
+     * @date  2024/07/05 14:48
      */
     void add(QyCheckListAddParam qyCheckListAddParam);
 
@@ -50,7 +50,7 @@ public interface QyCheckListService extends IService<QyCheckList> {
      * 编辑回执单列表
      *
      * @author hgx
-     * @date  2024/07/05 10:49
+     * @date  2024/07/05 14:48
      */
     void edit(QyCheckListEditParam qyCheckListEditParam);
 
@@ -58,7 +58,7 @@ public interface QyCheckListService extends IService<QyCheckList> {
      * 删除回执单列表
      *
      * @author hgx
-     * @date  2024/07/05 10:49
+     * @date  2024/07/05 14:48
      */
     void delete(List<QyCheckListIdParam> qyCheckListIdParamList);
 
@@ -66,7 +66,7 @@ public interface QyCheckListService extends IService<QyCheckList> {
      * 获取回执单列表详情
      *
      * @author hgx
-     * @date  2024/07/05 10:49
+     * @date  2024/07/05 14:48
      */
     QyCheckList detail(QyCheckListIdParam qyCheckListIdParam);
 
@@ -74,7 +74,7 @@ public interface QyCheckListService extends IService<QyCheckList> {
      * 获取回执单列表详情
      *
      * @author hgx
-     * @date  2024/07/05 10:49
+     * @date  2024/07/05 14:48
      **/
     QyCheckList queryEntity(String id);
 }

+ 1 - 1
snowy-plugin/snowy-plugin-biz/src/main/java/vip/xiaonuo/biz/modular/qychecklist/service/impl/QyCheckListServiceImpl.java

@@ -38,7 +38,7 @@ import java.util.List;
  * 回执单列表Service接口实现类
  *
  * @author hgx
- * @date  2024/07/05 10:49
+ * @date  2024/07/05 14:48
  **/
 @Service
 public class QyCheckListServiceImpl extends ServiceImpl<QyCheckListMapper, QyCheckList> implements QyCheckListService {