|
@@ -2,6 +2,7 @@
|
|
|
using System.Collections.Generic;
|
|
|
using System.Linq;
|
|
|
using System.Text;
|
|
|
+using System.Text.RegularExpressions;
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
namespace OASystem.Domain.Dtos.System
|
|
@@ -14,29 +15,40 @@ namespace OASystem.Domain.Dtos.System
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
+
|
|
|
public string CompanyCode { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
+
|
|
|
public string CompanyName { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
+
|
|
|
public string Address { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
+
|
|
|
public int ContactUserId { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
- public string Tel { get; set; }
|
|
|
+
|
|
|
+ private string tel;
|
|
|
+ public string Tel
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return tel;
|
|
|
+ }
|
|
|
+ set
|
|
|
+ {
|
|
|
+ tel = value;
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
|
|
|
|
|
@@ -45,27 +57,7 @@ namespace OASystem.Domain.Dtos.System
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
+
|
|
|
public int CreateUserId { get; set; }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- public string Remark { get; set; }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
}
|
|
|
}
|