22 lines
479 B
C#
Raw Normal View History

2025-03-17 08:35:19 +08:00
using JiShe.CollectBus.EnergySystems.Entities;
using System;
2025-03-14 14:28:04 +08:00
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JiShe.CollectBus.EnergySystems.TableViews
{
2025-03-17 08:35:19 +08:00
public class V_FocusAmmeter: TB_AmmeterInfo
2025-03-14 14:28:04 +08:00
{
2025-03-17 08:35:19 +08:00
public string FocusAddress { get; set; }
public string FocusAreaCode { get; set; }
public string FocusCode { get; set; }
public string FocusState { get; set; }
2025-03-14 14:28:04 +08:00
}
}