4
hao
2025-04-16 c5fb1fbcbb2bf4d511773d348f9ef625855c61fc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
//package com.dev.entity;
//
//import com.app.base.entity.BaseEntity;
//import io.swagger.annotations.ApiModel;
//import org.hibernate.annotations.DynamicUpdate;
//
//import javax.persistence.Entity;
//import javax.persistence.Table;
//
///**
// * 存储过程
// */
//
//@Entity(name = "ApiStoreProcedure")
//@Table(name = ApiStoreProcedure.TABLE_NAME)
//@DynamicUpdate
//@ApiModel
//public class ApiStoreProcedure  extends BaseEntity {
//    public static final String TABLE_NAME = "api_store_procedure";
//
////    /**
////     * 看板id
////     */
////    private Long id;
//    /**
//     * 存储过程名称
//     */
//    private String procedureName;
//
//    /**
//     * 参数名称
//     */
//    private String parameterName;
//
//    /**
//     * 参数类型
//     */
//    private String parameterType;
//
//    /**
//     * 参数示例,以及要求
//     */
//    private String sampleItem;
//
//
//    /**
//     * 是否必填  0--非必填 1--必填
//     */
//    private Integer mustFlag;
//
//    /**
//     * 编码
//     */
//    private String sourceCode;
//
//    /**
//     * 描述
//     */
//    private String describe;
//
//}