17 lines
360 B
C#
17 lines
360 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WX.CRM.Model.DTO
|
|
{
|
|
public class UnCallRecordConfig
|
|
{
|
|
public int SORT { get; set; }
|
|
public decimal EID { get; set; }
|
|
public string ENAME { get; set; }
|
|
public int STATUS { get; set; }
|
|
}
|
|
}
|