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.
72 lines
2.0 KiB
C#
72 lines
2.0 KiB
C#
3 years ago
|
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 = "sys_zlset", DisableSyncStructure = true)]
|
||
|
public partial class SysZlset {
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
||
|
public string COMPANYID { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
||
|
public string GID { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "zl1day")]
|
||
|
public int? Zl1day { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "zl1name", DbType = "varchar(20)")]
|
||
|
public string Zl1name { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "zl2day")]
|
||
|
public int? Zl2day { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "zl2name", DbType = "varchar(20)")]
|
||
|
public string Zl2name { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "zl3day")]
|
||
|
public int? Zl3day { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "zl3name", DbType = "varchar(20)")]
|
||
|
public string Zl3name { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "zl4day")]
|
||
|
public int? Zl4day { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "zl4name", DbType = "varchar(20)")]
|
||
|
public string Zl4name { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "zl5day")]
|
||
|
public int? Zl5day { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "zl5name", DbType = "varchar(20)")]
|
||
|
public string Zl5name { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "zl6day")]
|
||
|
public int? Zl6day { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "zl6name", DbType = "varchar(20)")]
|
||
|
public string Zl6name { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "zl7day")]
|
||
|
public int? Zl7day { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "zl7name", DbType = "varchar(20)")]
|
||
|
public string Zl7name { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "zl8day")]
|
||
|
public int? Zl8day { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "zl8name", DbType = "varchar(20)")]
|
||
|
public string Zl8name { get; set; }
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|