|
@@ -0,0 +1,51 @@
|
|
|
+package com.onemap.apply.domain.jsc;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @author lvhp
|
|
|
+ * * @date 2024/5/21
|
|
|
+ */
|
|
|
+@TableName("t_jsc_sql")
|
|
|
+public class TjscsqlDTO {
|
|
|
+ private String id;
|
|
|
+ @TableField("jsc_type")
|
|
|
+ private String jscType;
|
|
|
+ @TableField("jsc_view")
|
|
|
+ private String jscView;
|
|
|
+ @TableField("jsc_sql")
|
|
|
+ private String jscSql;
|
|
|
+
|
|
|
+ public String getId() {
|
|
|
+ return id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId(String id) {
|
|
|
+ this.id = id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getJscType() {
|
|
|
+ return jscType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setJscType(String jscType) {
|
|
|
+ this.jscType = jscType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getJscView() {
|
|
|
+ return jscView;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setJscView(String jscView) {
|
|
|
+ this.jscView = jscView;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getJscSql() {
|
|
|
+ return jscSql;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setJscSql(String jscSql) {
|
|
|
+ this.jscSql = jscSql;
|
|
|
+ }
|
|
|
+}
|