fs-danaus
2022-11-14 12560372988b49cc9465e92c32d852db2d0e8612
提交 | 用户 | age
a6a76f 1 package com.yc.action.grid;
F 2
3 import com.yc.utils.GTJson;
7aeec6 4
F 5 import java.util.List;
a6a76f 6
F 7 /**
8  * 返回执行保存操作时所需要的信息
9  * 
10  * */
11
12 public class SqlInfo {
13 private String sql;//执行保存的所有sql语句
14 private String canel;//表示当前是执行取消确认
15 private String doccode;//单号
16 private GTJson json;
17 private boolean outBoo;
18 private boolean isNew;
19 private List<String> tranList;
20 private boolean isDoccode=false;//是否为单据类型
21 private String rowid="";//返回primaryKey值
22 private String detailRowid="";//返回primaryKey值
cef3ae 23     private OAExternalEntiy oaExternalURL=null;
366271 24     private String tableName;
F 25     private int onlinePay;
26     private int onlineRefund;
7aeec6 27 private  String linkDocInfo;
F 28 private  String memo;
29
30     public String getLinkDocInfo() {
31         return linkDocInfo;
32     }
33
34     public void setLinkDocInfo(String linkDocInfo) {
35         this.linkDocInfo = linkDocInfo;
36     }
37
38     public String getMemo() {
39         return memo;
40     }
41
42     public void setMemo(String memo) {
43         this.memo = memo;
44     }
366271 45
F 46     public int getOnlinePay() {
47         return onlinePay;
48     }
49
50     public void setOnlinePay(int onlinePay) {
51         this.onlinePay = onlinePay;
52     }
53
54     public int getOnlineRefund() {
55         return onlineRefund;
56     }
57
58     public void setOnlineRefund(int onlineRefund) {
59         this.onlineRefund = onlineRefund;
60     }
a6a76f 61
cef3ae 62     public OAExternalEntiy getOaExternalURL() {
a6a76f 63         return oaExternalURL;
F 64     }
65
cef3ae 66     public void setOaExternalURL(OAExternalEntiy oaExternalURL) {
a6a76f 67         this.oaExternalURL = oaExternalURL;
F 68     }
69
70     public String getSql() {
71         return sql;
72     }
73
74     public void setSql(String sql) {
75         this.sql = sql;
76     }
77
78     public String getCanel() {
79         return canel;
80     }
81
82     public void setCanel(String canel) {
83         this.canel = canel;
84     }
85
86     public String getDoccode() {
87         return doccode;
88     }
89
90     public void setDoccode(String doccode) {
91         this.doccode = doccode;
92     }
93
94     public GTJson getJson() {
95         return json;
96     }
97
98     public void setJson(GTJson json) {
99         this.json = json;
100     }
101
102     public boolean isOutBoo() {
103         return outBoo;
104     }
105
106     public void setOutBoo(boolean outBoo) {
107         this.outBoo = outBoo;
108     }
109
110     public boolean isNew() {
111         return isNew;
112     }
113
114     public void setNew(boolean aNew) {
115         isNew = aNew;
116     }
117
118     public List<String> getTranList() {
119         return tranList;
120     }
121
122     public void setTranList(List<String> tranList) {
123         this.tranList = tranList;
124     }
125
126     public boolean isDoccode() {
127         return isDoccode;
128     }
129
130     public void setIsDoccode(boolean doccode) {
131         isDoccode = doccode;
132     }
133
134     public String getRowid() {
135         return rowid;
136     }
137
138     public void setRowid(String rowid) {
139         this.rowid = rowid;
140     }
141
142     public String getDetailRowid() {
143         return detailRowid;
144     }
145
146     public void setDetailRowid(String detailRowid) {
147         this.detailRowid = detailRowid;
148     }
366271 149
F 150     public void setTableName(String tableName) {
151         this.tableName = tableName;
152     }
153
154     public String getTableName() {
155         return tableName;
156     }
a6a76f 157 }