22 lines
402 B
C#
22 lines
402 B
C#
|
|
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; }
|
|||
|
|
}
|