Compare commits
2 Commits
86f41c849f
...
4646cd6424
| Author | SHA1 | Date | |
|---|---|---|---|
| 4646cd6424 | |||
| f1f84fc4b2 |
@@ -15,3 +15,11 @@ ALTER TABLE t_machine_learning_models MODIFY COLUMN model_field varchar(4096) NO
|
||||
优化点:
|
||||
数据中心 / 接口源 / 接口新建 修改 查看 请求地址 输入框加长
|
||||
|
||||
|
||||
|
||||
com.fibo.ddp.common.model.strategyx.decisiontable.DecisionTablesResult
|
||||
TODO 注意 添加决策表 时 实际对应的字段是 ro 和 colum ,待确认 !!!
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -30,6 +30,7 @@ public class DecisionTablesResult implements Serializable {
|
||||
|
||||
private Long versionId;//决策表版本id
|
||||
|
||||
// TODO 注意 添加决策表 时 实际对应的字段是 ro 和 colum ,待确认 !!!
|
||||
@TableField(value = "rowss")
|
||||
private Integer ro;//行数
|
||||
|
||||
|
||||
@@ -481,6 +481,8 @@ CREATE TABLE `t_decision_tables_result` (
|
||||
`version_id` int(11) NOT NULL DEFAULT '0' COMMENT '决策表版本id',
|
||||
`rows` int(11) DEFAULT NULL COMMENT '行数',
|
||||
`columns` int(11) DEFAULT NULL COMMENT '列数',
|
||||
`ro` int(11) DEFAULT NULL COMMENT '行数new',
|
||||
`colum` int(11) DEFAULT NULL COMMENT '列数new',
|
||||
`result_value` longtext COMMENT '结果集二维数组',
|
||||
`create_time` datetime DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
|
||||
`update_time` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间',
|
||||
|
||||
5
sql/update.sql
Normal file
5
sql/update.sql
Normal file
@@ -0,0 +1,5 @@
|
||||
|
||||
ALTER TABLE t_decision_tables_result ADD COLUMN `ro` int DEFAULT NULL COMMENT '行数';
|
||||
ALTER TABLE t_decision_tables_result ADD COLUMN `colum` int DEFAULT NULL COMMENT '列数';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user