ComplianceServer/code/Hg.Complaint.Domain/Dto/MarkTrollsDto.cs

30 lines
676 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Hg.Complaint.Domain.Dto
{
public class MarkTrollsDto
{
/// <summary>
/// 平台id
/// </summary>
public string? Appid { get; set; }
/// <summary>
/// 用户账号比如软件平台username,服务号openid
/// </summary>
public string? Appuserid { get; set; }
public int? Eid { get; set; }
public ComplaintSignReason? Reason { get; set; }
public string? Content { get; set; }
public string? Deptid { get; set; }
}
}