//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; // //}