mirror of
https://github.com/YGGverse/rssto.git
synced 2026-03-31 17:15:29 +00:00
fix field asset and type
This commit is contained in:
parent
d8f2d723f5
commit
480cd21e73
1 changed files with 2 additions and 2 deletions
|
|
@ -50,7 +50,7 @@ impl Mysql {
|
||||||
) -> Result<Vec<ChannelItem>, Error> {
|
) -> Result<Vec<ChannelItem>, Error> {
|
||||||
self.connection.exec_map(
|
self.connection.exec_map(
|
||||||
format!(
|
format!(
|
||||||
"SELECT `channel_item_id`, `channel_id`, `guid`, `link`, `title`, `description` FROM `channel_item` WHERE `channel_id` = ? AND `guid` = ? LIMIT {}",
|
"SELECT `channel_item_id`, `channel_id`, `pub_date`, `guid`, `link`, `title`, `description` FROM `channel_item` WHERE `channel_id` = ? AND `guid` = ? LIMIT {}",
|
||||||
limit.unwrap_or(DEFAULT_LIMIT)),
|
limit.unwrap_or(DEFAULT_LIMIT)),
|
||||||
(
|
(
|
||||||
channel_id,
|
channel_id,
|
||||||
|
|
@ -117,7 +117,7 @@ pub struct Channel {
|
||||||
pub struct ChannelItem {
|
pub struct ChannelItem {
|
||||||
pub channel_item_id: u64,
|
pub channel_item_id: u64,
|
||||||
pub channel_id: u64,
|
pub channel_id: u64,
|
||||||
pub pub_date: i32,
|
pub pub_date: i64,
|
||||||
pub guid: String,
|
pub guid: String,
|
||||||
pub link: String,
|
pub link: String,
|
||||||
pub title: Option<String>,
|
pub title: Option<String>,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue