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.
90 lines
2.0 KiB
C#
90 lines
2.0 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 = "code_ctn_disp", DisableSyncStructure = true)]
|
|
public partial class CodeCtnDisp {
|
|
|
|
/// <summary>
|
|
/// 代码
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(36)", IsPrimary = true, IsNullable = false)]
|
|
public string ID { get; set; } = Guid.NewGuid().ToString().ToUpper();
|
|
|
|
/// <summary>
|
|
/// 箱型1
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string CNT1 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 箱型10
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string CNT10 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 箱型2
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string CNT2 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 箱型3
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string CNT3 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 箱型4
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string CNT4 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 箱型5
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string CNT5 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 箱型6
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string CNT6 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 箱型7
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string CNT7 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 箱型8
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string CNT8 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 箱型9
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string CNT9 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 所属分公司代码
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
|
public string CORPID { get; set; }
|
|
|
|
}
|
|
|
|
}
|