18 lines
328 B
C#
18 lines
328 B
C#
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; }
|
|
}
|