You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
527 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace POSV.Proxy.GuoPan.Entity
{
public class GuoPanBase
{
public string gpid { set; get; }
public string msid { set; get; }
public string nonce { set; get; }
public string signtype { set; get; }
public string timestamp { set; get; } = DateTime.Now.ToString("yyyyMMddHHmmss");
public string protocal { set; get; } = "mqtt";
public string msg_sign { set; get; }
}
}