|
@@ -60,6 +60,31 @@ public class CapitalTransactionsTable extends Table<CapitalTransactions> {
|
|
|
public QueryColumn remark = this.field(CapitalTransactions::getRemark);
|
|
|
|
|
|
/**
|
|
|
+ * 订单id
|
|
|
+ */
|
|
|
+ public QueryColumn orderId = this.field(CapitalTransactions::getOrderId);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 订单编号
|
|
|
+ */
|
|
|
+ public QueryColumn orderCode = this.field(CapitalTransactions::getOrderCode);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 是否小程序 1是 0否
|
|
|
+ */
|
|
|
+ public QueryColumn hasApplet = this.field(CapitalTransactions::getHasApplet);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 是否批单 1是 0否
|
|
|
+ */
|
|
|
+ public QueryColumn hasBulkOrder = this.field(CapitalTransactions::getHasBulkOrder);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 是否私账 1私帐 0公帐
|
|
|
+ */
|
|
|
+ public QueryColumn hasPrivate = this.field(CapitalTransactions::getHasPrivate);
|
|
|
+
|
|
|
+ /**
|
|
|
* 创建人
|
|
|
*/
|
|
|
public QueryColumn createUser = this.field(CapitalTransactions::getCreateUser);
|