14 lines
245 B
C#
14 lines
245 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace YunDa.SOMS.ProDB.Models;
|
|
|
|
public partial class TbContactDo
|
|
{
|
|
public int? DeviceTypeCode { get; set; }
|
|
|
|
public int? Bit { get; set; }
|
|
|
|
public string? Title { get; set; }
|
|
}
|