裝置設定: 裝置類型選擇改為讀取sensorType資料表 電站交叉分析: 選擇比較欄位(以sensorTypeDetail做更新) PowerStationRepository.cs -> 刪除已不使用的資料表判斷 debug -> 電站交叉分析中 設備有兩個導致查詢不了,增加查詢判斷
32 lines
1.3 KiB
C#
32 lines
1.3 KiB
C#
using Microsoft.AspNetCore.Mvc;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SolarPower.Models.SensorDetail
|
|
{
|
|
public class SensorDetail : Created
|
|
{
|
|
public int Id { get; set; } //編號
|
|
public int SensorTypeId { get; set; } //裝置類別編號
|
|
public int Deleted { get; set; } //是否刪除
|
|
public string ItemName { get; set; } //項目名稱
|
|
public string ItemEName { get; set; } //英文簡稱
|
|
public string HourType { get; set; } //小時數值類別
|
|
public string DayType { get; set; } //日數值類別
|
|
public string MonthType { get; set; } //月數值類別
|
|
public string WarningURL { get; set; } //警告網址
|
|
public int UpperValue { get; set; } //上限
|
|
public int LowerValue { get; set; } //下限
|
|
public string HourTypeName { get; set; } //小時數值類別的名稱
|
|
public string DayTypeName { get; set; } //日數值類別的名稱
|
|
public string MonthTypeName { get; set; } //月數值類別的名稱
|
|
|
|
private string updatedAt;
|
|
public int UpdatedBy { get; set; } //修改者
|
|
public string UpdatedAt { get { return Convert.ToDateTime(updatedAt).ToString("yyyy-MM-dd HH:mm:ss"); } set { updatedAt = value; } } //修改時間
|
|
}
|
|
|
|
}
|