FIC_Solar/SolarPower/Models/NoticeSchedule.cs
2021-08-02 16:25:25 +08:00

31 lines
916 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 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; }
}
}