BaseGateway.cs 398 Bytes
using FreeSql.DataAnnotations;

namespace HHECS.DAQShared.Models.IOTCloud
{
    [Table(Name = "base_gateway")]
    public class BaseGateway : BaseEntity<int>
    {
        public string GatewaySerialNumber { get; set; } = null!;

        public string Remark { get; set; } = null!;

        public DateTime CreateTime { get; set; }

        public string CreateBy { get; set; } = null!;
    }
}