Files
Yi.Admin/Yi.Framework.Net6/Yi.Framework.DTOModel/Base/Vo/ArticleVo.cs

40 lines
915 B
C#
Raw Normal View History

2022-10-13 14:04:48 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2023-01-02 14:29:16 +08:00
namespace Yi.Framework.DtoModel.Base.Vo
2022-10-13 14:04:48 +08:00
{
public class ArticleVo
{
public long Id { get; set; }
2022-11-29 18:47:26 +08:00
2023-01-05 20:32:58 +08:00
public string Title { get; set; } = string.Empty;
2022-11-29 18:47:26 +08:00
2023-01-05 20:32:58 +08:00
public string Content { get; set; } = string.Empty;
2022-11-29 18:47:26 +08:00
2022-10-13 14:04:48 +08:00
public long? UserId { get; set; }
public long? CreateUser { get; set; }
2022-11-29 18:47:26 +08:00
2022-10-13 14:04:48 +08:00
public DateTime? CreateTime { get; set; }
2022-11-29 18:47:26 +08:00
2022-10-13 14:04:48 +08:00
public long? ModifyUser { get; set; }
2022-11-29 18:47:26 +08:00
2022-10-13 14:04:48 +08:00
public DateTime? ModifyTime { get; set; }
2022-11-29 18:47:26 +08:00
2022-10-13 14:04:48 +08:00
public bool? IsDeleted { get; set; }
2022-11-29 18:47:26 +08:00
2022-10-13 14:04:48 +08:00
public long? TenantId { get; set; }
2022-11-29 18:47:26 +08:00
2022-10-13 14:04:48 +08:00
public int? OrderNum { get; set; }
2022-11-29 18:47:26 +08:00
2023-01-05 20:32:58 +08:00
public string? Remark { get; set; }
public List<string>? Images { get; set; }
2022-10-13 14:04:48 +08:00
2022-11-29 23:03:10 +08:00
public int? AgreeNum { get; set; }
2023-01-05 20:32:58 +08:00
public UserVo? User { get; set; }
2022-10-13 14:04:48 +08:00
}
}