32 lines
771 B
C#
32 lines
771 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 MarkCustomerDto
|
|
{
|
|
/// <summary>
|
|
/// 1为合规 2 为业务
|
|
/// </summary>
|
|
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; }
|
|
|
|
/// <summary>
|
|
/// 工号
|
|
/// </summary>
|
|
public int? Eid { get; set; }
|
|
|
|
/// <summary>
|
|
/// 员工姓名
|
|
/// </summary>
|
|
public string? Ename { get; set; }
|
|
}
|
|
} |