完善主题内容

This commit is contained in:
橙子
2023-01-25 22:27:19 +08:00
parent 99787950a8
commit ac26df6827
22 changed files with 155 additions and 25 deletions

View File

@@ -1,3 +1,4 @@
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
@@ -9,6 +10,7 @@ namespace Yi.BBS.Application.Contracts.Exhibition.Dtos.Banner
{
public class BannerGetListOutputDto : IEntityDto<long>
{
public long Id { get; set; }
public string Name { get; set; }
public string? Logo { get; set; }

View File

@@ -1,3 +1,4 @@
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
@@ -9,6 +10,7 @@ namespace Yi.BBS.Application.Contracts.Exhibition.Dtos
{
public class BannerGetOutputDto : IEntityDto<long>
{
public long Id { get; set; }
public string Name { get; set; }
public string? Logo { get; set; }

View File

@@ -11,13 +11,10 @@ namespace Yi.BBS.Application.Contracts.Forum.Dtos.Discuss
/// </summary>
public class DiscussCreateInputVo
{
public long Id { get; set; }
public string Title { get; set; }
public string Types { get; set; }
public string? Introduction { get; set; }
public DateTime? CreateTime { get; set; }
public int AgreeNum { get; set; }
public int SeeNum { get; set; }
public string Content { get; set; }
public string? Color { get; set; }
}

View File

@@ -1,3 +1,4 @@
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
@@ -9,6 +10,7 @@ namespace Yi.BBS.Application.Contracts.Forum.Dtos.Discuss
{
public class DiscussGetListOutputDto : IEntityDto<long>
{
public long Id { get; set; }
public string Title { get; set; }
public string Types { get; set; }

View File

@@ -1,3 +1,4 @@
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
@@ -9,6 +10,7 @@ namespace Yi.BBS.Application.Contracts.Forum.Dtos
{
public class DiscussGetOutputDto : IEntityDto<long>
{
public long Id { get; set; }
public string Title { get; set; }
public string Types { get; set; }

View File

@@ -1,3 +1,4 @@
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
@@ -9,6 +10,7 @@ namespace Yi.BBS.Application.Contracts.Forum.Dtos.Plate
{
public class PlateGetListOutputDto : IEntityDto<long>
{
public long Id { get; set; }
public string Name { get; set; }
public string? Logo { get; set; }

View File

@@ -1,3 +1,4 @@
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
@@ -8,6 +9,7 @@ namespace Yi.BBS.Application.Contracts.Forum.Dtos.Plate
{
public class PlateUpdateInputVo
{
public long Id { get; set; }
public string Name { get; set; }
public string? Logo { get; set; }

View File

@@ -1,4 +1,5 @@
using System;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
@@ -8,7 +9,8 @@ namespace Yi.BBS.Application.Contracts.GlobalSetting.Dtos.Temp
{
public class ActionJwtDto
{
public int Id { get; set; }
public long Id { get; set; }
public string ActionName { get; set; }
public string Router { get; set; }
public string Icon { get; set; }

View File

@@ -1,4 +1,5 @@
using System;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
@@ -18,6 +19,7 @@ namespace Yi.BBS.Application.Contracts.GlobalSetting.Dtos.Temp
public class LoginUserInfoDto
{
public long Id { get; set; }
public string UserName { get; set; }