fix: show video url in item and vip pass in vip category

pull/112/head
shancheas 2024-10-17 15:27:43 +07:00
parent 8f43907091
commit 8ba5646bb6
3 changed files with 3 additions and 0 deletions

View File

@ -34,6 +34,7 @@ export class DetailItemManager extends BaseDetailManager<ItemEntity> {
return [ return [
`${this.tableName}.id`, `${this.tableName}.id`,
`${this.tableName}.image_url`, `${this.tableName}.image_url`,
`${this.tableName}.video_url`,
`${this.tableName}.created_at`, `${this.tableName}.created_at`,
`${this.tableName}.status`, `${this.tableName}.status`,
`${this.tableName}.item_type`, `${this.tableName}.item_type`,

View File

@ -35,6 +35,7 @@ export class DetailVipCategoryManager extends BaseDetailManager<VipCategoryEntit
`${this.tableName}.id`, `${this.tableName}.id`,
`${this.tableName}.status`, `${this.tableName}.status`,
`${this.tableName}.name`, `${this.tableName}.name`,
`${this.tableName}.has_vip_pass`,
`${this.tableName}.created_at`, `${this.tableName}.created_at`,
`${this.tableName}.updated_at`, `${this.tableName}.updated_at`,
`${this.tableName}.creator_name`, `${this.tableName}.creator_name`,

View File

@ -39,6 +39,7 @@ export class IndexVipCategoryManager extends BaseIndexManager<VipCategoryEntity>
`${this.tableName}.id`, `${this.tableName}.id`,
`${this.tableName}.status`, `${this.tableName}.status`,
`${this.tableName}.name`, `${this.tableName}.name`,
`${this.tableName}.has_vip_pass`,
`${this.tableName}.created_at`, `${this.tableName}.created_at`,
`${this.tableName}.updated_at`, `${this.tableName}.updated_at`,
`${this.tableName}.creator_name`, `${this.tableName}.creator_name`,