22 lines
464 B
C#
22 lines
464 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace QYZH.InteractiveMagazine.Models.Dto.Journal
|
|||
|
|
{
|
|||
|
|
public class JournalPageTaskKeywordAnalysis
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 问题Id
|
|||
|
|
/// </summary>
|
|||
|
|
public long Id { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 单项解析
|
|||
|
|
/// </summary>
|
|||
|
|
public string KeywordAnalysis { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|