用户反馈接口初步完成
This commit is contained in:
@@ -0,0 +1,97 @@
|
||||
//--------------------------------------------------------------------
|
||||
// 此代码由T4模板自动生成 byzhouhang 20210918
|
||||
// 生成时间 2024-07-30 10:39:12
|
||||
// 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。
|
||||
//--------------------------------------------------------------------
|
||||
using System;
|
||||
using IRaCIS.Core.Domain.Share;
|
||||
using System.Collections.Generic;
|
||||
using Newtonsoft.Json;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
namespace IRaCIS.Core.Application.ViewModel
|
||||
{
|
||||
/// <summary> UserFeedBackView 列表视图模型 </summary>
|
||||
public class UserFeedBackView : UserFeedBackAddOrEdit
|
||||
{
|
||||
public string TrialCode { get; set; }
|
||||
|
||||
public string ExperimentName { get; set; }
|
||||
|
||||
public string SubjectCode { get; set; }
|
||||
|
||||
public string TrialSiteCode { get; set; }
|
||||
|
||||
public string SubjectVisitName { get; set; }
|
||||
|
||||
|
||||
public string FeedBackUserName { get; set; }
|
||||
|
||||
public string FeedBackFullName { get; set; }
|
||||
|
||||
|
||||
public DateTime CreateTime { get; set; }
|
||||
public DateTime UpdateTime { get; set; }
|
||||
|
||||
public UserTypeEnum UserTypeEnum { get; set; }
|
||||
}
|
||||
|
||||
///<summary>UserFeedBackQuery 列表查询参数模型</summary>
|
||||
public class UserFeedBackQuery : PageInput
|
||||
{
|
||||
|
||||
public string? TrialKeyInfo { get; set; }
|
||||
|
||||
public string? SubejctAndVisitKeyInfo { get; set; }
|
||||
|
||||
public UserTypeEnum? UserTypeEnum { get; set; }
|
||||
|
||||
public string FeedBackKeyInfo { get; set; }
|
||||
|
||||
public string? QuestionDescription { get; set; }
|
||||
|
||||
public int? QuestionType { get; set; }
|
||||
|
||||
public int? State { get; set; }
|
||||
|
||||
public string? TrialSiteCode { get; set; }
|
||||
|
||||
public DateTime? BeginCreatime { get; set; }
|
||||
|
||||
public DateTime? EndCreatime { get; set; }
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
///<summary> UserFeedBackAddOrEdit 列表查询参数模型</summary>
|
||||
public class UserFeedBackAddOrEdit
|
||||
{
|
||||
public Guid? Id { get; set; }
|
||||
public Guid? SubjectId { get; set; }
|
||||
public Guid? SubjectVisitId { get; set; }
|
||||
public int QuestionType { get; set; }
|
||||
public string QuestionDescription { get; set; }
|
||||
|
||||
public int State { get; set; }
|
||||
public Guid? TrialSiteId { get; set; }
|
||||
|
||||
[NotDefault]
|
||||
public Guid TrialId { get; set; }
|
||||
|
||||
public List<string> ScreenshotList { get; set; }
|
||||
|
||||
[JsonIgnore]
|
||||
public string ScreenshotListStr { get; set; }
|
||||
}
|
||||
|
||||
|
||||
public class BatchUpdateCommand
|
||||
{
|
||||
public List<Guid> IdList { get; set; }
|
||||
|
||||
public int State { get; set; }
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user