FIC_Solar/SolarPower/Models/NoticeSchedule.cs
Kai 6ad6054bba 1. 即時資訊 and 合併電站圖表:增加模組溫度
2.Sensor 如有多個需修正為多個平均
3.合併電站:選擇電站改為跟交叉分析中的左側選單相同
4. bug fix
2021-08-05 17:12:38 +08:00

32 lines
959 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace SolarPower.Models
{
public class NoticeSchedule
{
public int Id { get; set; }
public byte Type { get; set; }
public string RecipientName { get; set; }
public string RecipientEmail { get; set; }
public string Subject { get; set; }
public string Content { get; set; }
public string Attachment { get; set; }
public byte IsDelivery { get; set; }
public string DeliveryAt { get; set; }
public string Reason { get; set; }
}
public class OperationPersonnel
{
public int PowerStationId { get; set; }
public int EmailDayReport { get; set; }
public int EmailMonthReport { get; set; }
public int EmailComplexReport { get; set; }
public int EmailException { get; set; }
public string Name { get; set; }
}
}