-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Alex
authored and
Alex
committed
Nov 26, 2019
1 parent
d0c718c
commit 08ca5e5
Showing
68 changed files
with
1,539 additions
and
4,884 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,17 @@ | ||
using System; | ||
using System.Linq; | ||
using System.ComponentModel.DataAnnotations.Schema; | ||
|
||
namespace UDP_Test.DB | ||
{ | ||
public class NBIoTCommand | ||
{ | ||
public int Id { get; set; } | ||
public int UserId { get; set; } | ||
public byte IdDev { get; set; } | ||
[Index] | ||
public int IdDev { get; set; } | ||
public byte[] Data { get; set; } | ||
public string DataShema { get; set; } | ||
public int UserId { get; set; } | ||
public User User { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,26 @@ | ||
using System; | ||
using System.Linq; | ||
using System.ComponentModel.DataAnnotations.Schema; | ||
|
||
namespace UDP_Test.DB | ||
{ | ||
public class NBIoTData | ||
{ | ||
public int Id { get; set; } | ||
[Index] | ||
public int UserId { get; set; } | ||
[Index] | ||
public short IdMSG { get; set; } | ||
public byte IdDev { get; set; } | ||
[Index] | ||
public int IdDev { get; set; } | ||
[Index] | ||
public long IMEI { get; set; } | ||
[Index] | ||
public long IMSI { get; set; } | ||
[Index] | ||
public DateTime DateTime { get; set; } | ||
public long address { get; set; } | ||
public int port { get; set; } | ||
public byte[] Data { get; set; } | ||
public DateTime DateTime { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.