using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Hg.Complaint.Domain.Dto
{
public class MarkCustomerDto
{
///
/// 1为合规 2 为业务
///
public int? Type { get; set; }
public bool IsResid { get; set; }
public string? PostId { get; set; }
public ComplaintSignType? Signtype { get; set; }
public string? Content { get; set; }
public string? DeptId { get; set; }
///
/// 工号
///
public int? Eid { get; set; }
///
/// 员工姓名
///
public string? Ename { get; set; }
}
}