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

29 lines
562 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Hg.Complaint.Domain.Dto
{
public class ComplaintFollowDetailDto
{
public int Id { get; set; }
public int? Eid { get; set; }
public string? Ename { get; set; }
public string? Crmappid { get; set; }
public string? Title { get; set; }
public string? Deptname { get; set; }
public string? Content { get; set; }
public DateTime? Ctime { get; set; }
}
}