Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
5
51business
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
方斌
51business
Commits
46a8bbdc
Commit
46a8bbdc
authored
Jul 04, 2019
by
李尚科
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
house v2 tool fix
parent
7328b181
Pipeline
#10217
passed with stage
in 5 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
188 additions
and
0 deletions
+188
-0
house_price_trend2.js
app/model/block/house_price_trend2.js
+94
-0
house_supply_demand2.js
app/model/block/house_supply_demand2.js
+94
-0
No files found.
app/model/block/house_price_trend2.js
0 → 100644
View file @
46a8bbdc
'use strict'
;
module
.
exports
=
app
=>
{
const
{
INTEGER
,
TEXT
}
=
app
.
Sequelize
;
const
HousePriceTrend2
=
app
.
blockModel
.
define
(
'house_price_trend2'
,
{
id
:
{
type
:
INTEGER
,
allowNull
:
false
,
primaryKey
:
true
,
autoIncrement
:
true
,
},
pid
:
INTEGER
,
trend_json
:
{
type
:
TEXT
,
allowNull
:
true
,
field
:
'trend_json'
,
get
()
{
const
trend_json
=
this
.
getDataValue
(
'trend_json'
);
if
(
trend_json
)
{
try
{
return
JSON
.
parse
(
trend_json
);
}
catch
(
error
)
{
return
[];
}
}
return
[];
},
},
},
{
timestamps
:
false
,
tableName
:
'house_price_trend2'
,
freezeTableName
:
true
,
});
HousePriceTrend2
.
one
=
async
(
data
)
=>
{
const
attributes
=
data
.
attributes
?
data
.
attributes
:
{};
const
where
=
data
.
where
?
data
.
where
:
{};
return
await
HousePriceTrend2
.
findOne
({
attributes
:
attributes
,
where
:
where
,
});
}
HousePriceTrend2
.
all
=
async
(
data
)
=>
{
const
attributes
=
data
.
attributes
?
data
.
attributes
:
{};
const
where
=
data
.
where
?
data
.
where
:
{};
return
await
HousePriceTrend2
.
findAll
({
attributes
:
attributes
,
where
:
where
,
});
}
HousePriceTrend2
.
list
=
async
(
data
=
{})
=>
{
const
limit
=
data
.
limit
?
data
.
limit
:
10
;
const
page
=
data
.
page
?
data
.
page
:
1
;
const
order
=
data
.
order
?
data
.
order
:
[];
const
attributes
=
data
.
attributes
?
data
.
attributes
:
{};
const
where
=
data
.
where
?
data
.
where
:
{};
const
condition
=
{
offset
:
(
page
-
1
)
*
limit
,
limit
,
where
:
where
,
order
:
order
,
attributes
:
attributes
,
};
const
{
count
,
rows
}
=
await
HousePriceTrend2
.
findAndCountAll
(
condition
);
return
{
page
,
count
,
rows
};
}
HousePriceTrend2
.
add
=
async
(
data
)
=>
{
try
{
//返回promise对象实力 instance
const
res
=
await
HousePriceTrend2
.
create
(
data
);
//从promise 实例中中获得需要的id号,id 必须是自增长,而且必须主键,否则返回null
return
res
.
id
;
}
catch
(
error
)
{
ctx
.
status
=
500
;
throw
(
error
);
}
}
HousePriceTrend2
.
edit
=
async
(
data
)
=>
{
const
where
=
data
.
where
;
const
params
=
data
.
params
;
HousePriceTrend2
.
update
(
params
,
{
where
:
where
}).
catch
(
e
=>
res
.
json
({
status
:
500
,
error
:
e
}));
}
return
HousePriceTrend2
;
};
app/model/block/house_supply_demand2.js
0 → 100644
View file @
46a8bbdc
'use strict'
;
module
.
exports
=
app
=>
{
const
{
INTEGER
,
TEXT
}
=
app
.
Sequelize
;
const
HouseSupplyDemand2
=
app
.
blockModel
.
define
(
'house_supply_demand2'
,
{
id
:
{
type
:
INTEGER
,
allowNull
:
false
,
primaryKey
:
true
,
autoIncrement
:
true
,
},
pid
:
INTEGER
,
supply_demand_json
:
{
type
:
TEXT
,
allowNull
:
true
,
field
:
'supply_demand_json'
,
get
()
{
const
supply_demand_json
=
this
.
getDataValue
(
'supply_demand_json'
);
if
(
supply_demand_json
)
{
try
{
return
JSON
.
parse
(
supply_demand_json
);
}
catch
(
error
)
{
return
[];
}
}
return
[];
},
},
},
{
timestamps
:
false
,
tableName
:
'house_supply_demand2'
,
freezeTableName
:
true
,
});
HouseSupplyDemand2
.
one
=
async
(
data
)
=>
{
const
attributes
=
data
.
attributes
?
data
.
attributes
:
{};
const
where
=
data
.
where
?
data
.
where
:
{};
return
await
HouseSupplyDemand2
.
findOne
({
attributes
:
attributes
,
where
:
where
,
});
}
HouseSupplyDemand2
.
all
=
async
(
data
)
=>
{
const
attributes
=
data
.
attributes
?
data
.
attributes
:
{};
const
where
=
data
.
where
?
data
.
where
:
{};
return
await
HouseSupplyDemand2
.
findAll
({
attributes
:
attributes
,
where
:
where
,
});
}
HouseSupplyDemand2
.
list
=
async
(
data
=
{})
=>
{
const
limit
=
data
.
limit
?
data
.
limit
:
10
;
const
page
=
data
.
page
?
data
.
page
:
1
;
const
order
=
data
.
order
?
data
.
order
:
[];
const
attributes
=
data
.
attributes
?
data
.
attributes
:
{};
const
where
=
data
.
where
?
data
.
where
:
{};
const
condition
=
{
offset
:
(
page
-
1
)
*
limit
,
limit
,
where
:
where
,
order
:
order
,
attributes
:
attributes
,
};
const
{
count
,
rows
}
=
await
HouseSupplyDemand2
.
findAndCountAll
(
condition
);
return
{
page
,
count
,
rows
};
}
HouseSupplyDemand2
.
add
=
async
(
data
)
=>
{
try
{
//返回promise对象实力 instance
const
res
=
await
HouseSupplyDemand2
.
create
(
data
);
//从promise 实例中中获得需要的id号,id 必须是自增长,而且必须主键,否则返回null
return
res
.
id
;
}
catch
(
error
)
{
ctx
.
status
=
500
;
throw
(
error
);
}
}
HouseSupplyDemand2
.
edit
=
async
(
data
)
=>
{
const
where
=
data
.
where
;
const
params
=
data
.
params
;
HouseSupplyDemand2
.
update
(
params
,
{
where
:
where
}).
catch
(
e
=>
res
.
json
({
status
:
500
,
error
:
e
}));
}
return
HouseSupplyDemand2
;
};
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment