|
@@ -0,0 +1,39 @@
|
|
|
|
+using System;
|
|
|
|
+using System.Collections.Generic;
|
|
|
|
+using System.Linq;
|
|
|
|
+using System.Text;
|
|
|
|
+using System.Threading.Tasks;
|
|
|
|
+
|
|
|
|
+namespace OASystem.Domain.Dtos.CRM
|
|
|
|
+{
|
|
|
|
+ public class NewClientDataQueryDto
|
|
|
|
+ {
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ public string Contact { get; set; }
|
|
|
|
+
|
|
|
|
+ public string Location { get; set; }
|
|
|
|
+
|
|
|
|
+ public string Client { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ public int Userid { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ public char Weight { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ public int Lvlid { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ public int Business { get; set; }
|
|
|
|
+ }
|
|
|
|
+}
|