You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
138 lines
3.4 KiB
C#
138 lines
3.4 KiB
C#
using FreeSql.DatabaseModel;using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
using System.Threading.Tasks;
|
|
using Newtonsoft.Json;
|
|
using FreeSql.DataAnnotations;
|
|
|
|
namespace djy.Model {
|
|
|
|
[JsonObject(MemberSerialization.OptIn), Table(Name = "op_seae_billtrace_plan", DisableSyncStructure = true)]
|
|
public partial class OpSeaeBilltracePlan {
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)", IsPrimary = true, IsNullable = false)]
|
|
public string GID { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool AlertCD { get; set; } = false;
|
|
|
|
[JsonProperty]
|
|
public bool AlertCDBaoGuanFangXing { get; set; } = false;
|
|
|
|
[JsonProperty]
|
|
public int AlertCDBaoGuanFangXingDay1 { get; set; } = 2;
|
|
|
|
[JsonProperty]
|
|
public int AlertCDBaoGuanFangXingDay2 { get; set; } = 1;
|
|
|
|
[JsonProperty]
|
|
public bool AlertCDYunDiBaoGao { get; set; } = false;
|
|
|
|
[JsonProperty]
|
|
public int AlertCDYunDiBaoGaoHour { get; set; } = 3;
|
|
|
|
[JsonProperty]
|
|
public bool AlertCDYuPei { get; set; } = false;
|
|
|
|
[JsonProperty]
|
|
public int AlertCDYuPeiNum1 { get; set; } = 2;
|
|
|
|
[JsonProperty]
|
|
public int AlertCDYuPeiNum2 { get; set; } = 1;
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string AlertCDYuPeiType1 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string AlertCDYuPeiType2 { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool AlertCDZhuangZaiFangXing { get; set; } = false;
|
|
|
|
[JsonProperty]
|
|
public int AlertCDZhuangZaiFangXingMinute { get; set; } = 30;
|
|
|
|
[JsonProperty]
|
|
public bool AlertCZ { get; set; } = false;
|
|
|
|
[JsonProperty]
|
|
public bool AlertCZBeiXiang { get; set; } = false;
|
|
|
|
[JsonProperty]
|
|
public int AlertCZBeiXiangDay { get; set; } = 6;
|
|
|
|
[JsonProperty]
|
|
public bool AlertCZZhongXiangFanChang { get; set; } = false;
|
|
|
|
[JsonProperty]
|
|
public int AlertCZZhongXiangFanChangDay { get; set; } = 2;
|
|
|
|
[JsonProperty]
|
|
public bool AlertCZZhongXiangJiGang { get; set; } = false;
|
|
|
|
[JsonProperty]
|
|
public int AlertCZZhongXiangJiGangDay { get; set; } = 1;
|
|
|
|
[JsonProperty]
|
|
public bool AlertMDG { get; set; } = false;
|
|
|
|
[JsonProperty]
|
|
public bool AlertMDGChuanBoDaoGang { get; set; } = false;
|
|
|
|
[JsonProperty]
|
|
public int AlertMDGChuanBoDaoGangDay { get; set; } = 30;
|
|
|
|
[JsonProperty]
|
|
public bool AlertMDGMuDiGangFanKong { get; set; } = false;
|
|
|
|
[JsonProperty]
|
|
public int AlertMDGMuDiGangFanKongDay { get; set; } = 7;
|
|
|
|
[JsonProperty]
|
|
public bool AlertMDGMuDiGangTiXiang { get; set; } = false;
|
|
|
|
[JsonProperty]
|
|
public int AlertMDGMuDiGangTiXiangDay { get; set; } = 5;
|
|
|
|
[JsonProperty]
|
|
public bool AlertMT { get; set; } = false;
|
|
|
|
[JsonProperty]
|
|
public bool AlertMTFangXing { get; set; } = false;
|
|
|
|
[JsonProperty]
|
|
public int AlertMTFangXingMinute { get; set; } = 30;
|
|
|
|
[JsonProperty]
|
|
public bool AlertMTLiGang { get; set; } = false;
|
|
|
|
[JsonProperty]
|
|
public int AlertMTLiGangDay { get; set; } = 2;
|
|
|
|
[JsonProperty]
|
|
public bool AlertMTZhuangChuan { get; set; } = false;
|
|
|
|
[JsonProperty]
|
|
public int AlertMTZhuangChuanDay { get; set; } = 1;
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string CompID { get; set; }
|
|
|
|
[JsonProperty, Column(InsertValueSql = "getdate()")]
|
|
public DateTime CreateTime { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(200)")]
|
|
public string Remark { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string Title { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string UserID { get; set; }
|
|
|
|
}
|
|
|
|
}
|