22 lines
402 B
C#
Raw Normal View History

2024-11-26 13:45:28 +08:00
using System;
using System.Collections.Generic;
namespace YunDa.SOMS.Commdb.Models;
public partial class TbCdIo
{
public int? DeviceTypeCode { get; set; }
public int? Index0 { get; set; }
public int? Channel { get; set; }
public string? ChannelName { get; set; }
public int? KcIndex { get; set; }
public int? Board { get; set; }
public int? Type0 { get; set; }
}