Files
Web_IoTBase_Sever_Prod/MySQLAccess/PGModels/DeviceFun.cs

18 lines
328 B
C#
Raw Normal View History

2025-12-11 14:04:39 +08:00
using System;
using System.Collections.Generic;
namespace MySQLAccess.PGModels;
public partial class DeviceFun
{
public int Id { get; set; }
public long? DeviceId { get; set; }
public string? FunctionName { get; set; }
public DateTime? CreateTime { get; set; }
public bool? IsDelete { get; set; }
}