2025-07-08 14:01:10 +08:00

16 lines
496 B
C#

using System;
using System.Collections.Generic;
namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
{
public partial class ImVDeviceYxSrcDevice
{
public string Id { get; set; } = null!;
public string YxdataId { get; set; } = null!;
public string SrcDevId { get; set; } = null!;
public string DevNameOfYx { get; set; } = null!;
public string DataName { get; set; } = null!;
public string SrcDevName { get; set; } = null!;
}
}