forked from Halifa/TonyBlogs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
358 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
|
||
namespace TonyBlogs.DTO.BlogArticle | ||
{ | ||
public class BlogArticleListDTO : BaseListDTO<BlogArticleListItemDTO> | ||
{ | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
|
||
namespace TonyBlogs.DTO.BlogArticle | ||
{ | ||
public class BlogArticleListItemDTO | ||
{ | ||
public long ID { get; set; } | ||
|
||
/// <summary> | ||
/// 创建人用户编号 | ||
/// </summary> | ||
public long UserID { get; set; } | ||
|
||
/// <summary> | ||
/// 博客标题 | ||
/// </summary> | ||
public string Title { get; set; } | ||
|
||
/// <summary> | ||
/// 类别 | ||
/// </summary> | ||
public string Category { get; set; } | ||
|
||
/// <summary> | ||
/// 修改时间 | ||
/// </summary> | ||
public DateTime UpdateTime { get; set; } | ||
|
||
/// <summary> | ||
/// 创建时间 | ||
/// </summary> | ||
public DateTime CreateTime { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
|
||
namespace TonyBlogs.DTO.BlogArticle | ||
{ | ||
public class BlogArticleSearchDTO : JQueryDataTableSearchDTO | ||
{ | ||
public long UserID { get; set; } | ||
|
||
public string Title { get; set; } | ||
|
||
public string Category { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.