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.
141 lines
3.7 KiB
C#
141 lines
3.7 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 = "t_sys_awoke", DisableSyncStructure = true)]
|
|
public partial class TSysAwoke {
|
|
|
|
[JsonProperty, Column(Name = "AWOKE_ID", IsPrimary = true, IsIdentity = true)]
|
|
public int AWOKEID { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(30)")]
|
|
public string 报关信息状态 { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool? 出口舱单 { get; set; }
|
|
|
|
[JsonProperty]
|
|
public int? 分钟 { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool? 更新业务状态 { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool? 海关报关信息 { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool? 海关运抵报告 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "smalldatetime")]
|
|
public DateTime? 结束日期 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "smalldatetime")]
|
|
public DateTime? 开始日期 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string 录入人 { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime? 录入日期 { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool? 码头信息 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string 内容类别 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(300)")]
|
|
public string 内容字段 { get; set; }
|
|
|
|
[JsonProperty]
|
|
public int? 日期 { get; set; }
|
|
|
|
[JsonProperty]
|
|
public int? 时间 { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool? 是否发送提醒 { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool? 是否提醒到客户 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(60)")]
|
|
public string 提醒备注 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(30)")]
|
|
public string 提醒标题 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string 提醒对象 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(8)")]
|
|
public string 提醒方式 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(200)")]
|
|
public string 提醒结尾 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(30)")]
|
|
public string 提醒类别 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(4)")]
|
|
public string 提醒类型 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(30)")]
|
|
public string 提醒名称 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(200)")]
|
|
public string 提醒内容 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(500)")]
|
|
public string 提醒内容语句 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(30)")]
|
|
public string 提醒时间 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(8)")]
|
|
public string 提醒事项 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(200)")]
|
|
public string 提醒抬头 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(8)")]
|
|
public string 提醒状态 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string 显示方式 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string 星期 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string 业务类型 { get; set; }
|
|
|
|
[JsonProperty]
|
|
public int? 月份 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(30)")]
|
|
public string 运抵报告状态 { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool? QQCTU报关信息 { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool? QQCTU出口舱单 { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool? QQCTU码头信息 { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool? QQCTU运抵报告 { get; set; }
|
|
|
|
}
|
|
|
|
}
|