|
@@ -0,0 +1,24 @@
|
|
|
+using SqlSugar;
|
|
|
+using System;
|
|
|
+using System.Collections.Generic;
|
|
|
+using System.Linq;
|
|
|
+using System.Text;
|
|
|
+using System.Threading.Tasks;
|
|
|
+using XF.Domain.Repository;
|
|
|
+
|
|
|
+namespace Hotline.Orders
|
|
|
+{
|
|
|
+ /// <summary>
|
|
|
+ /// 外部市民管理
|
|
|
+ /// </summary>
|
|
|
+ public class ExternalCitizens: CreationEntity
|
|
|
+ {
|
|
|
+ public string PhoneNum { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 姓名
|
|
|
+ /// </summary>
|
|
|
+ [SugarColumn(ColumnDescription = "姓名")]
|
|
|
+ public string? Name { get; set; }
|
|
|
+ }
|
|
|
+}
|