电子药箱通讯服务端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SyncNodeDAL.cs 693B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace RDH.PharmacyPlatform.Sync.Core
  7. {
  8. internal class SyncNodeDAL : BaseDAL<SyncNode>
  9. {
  10. public SyncNodeDAL()
  11. {
  12. this.TableName = "T_Nodes";
  13. this.KeyColumnName = "Node_Id";
  14. }
  15. internal override Dictionary<string, string> InitMaps()
  16. {
  17. Dictionary<String, String> maps = new Dictionary<string, string>();
  18. maps.Add("Node_Id", "NodeId");
  19. maps.Add("Group_Name", "GroupName");
  20. maps.Add("Create_Time", "CreateTime");
  21. return maps;
  22. }
  23. }
  24. }