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.
63 lines
1.4 KiB
C#
63 lines
1.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 {
|
|
|
|
/// <summary>
|
|
/// 放箱申请
|
|
/// </summary>
|
|
[JsonObject(MemberSerialization.OptIn), Table(Name = "cma_ctrn_apply", DisableSyncStructure = true)]
|
|
public partial class CmaCtrnApply {
|
|
|
|
/// <summary>
|
|
/// GID
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(40)", IsPrimary = true, IsNullable = false)]
|
|
public string GID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 箱型
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(40)")]
|
|
public string CtrnType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 原始数据ID
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(40)")]
|
|
public string DataId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 用箱要求
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string GRemark { get; set; }
|
|
|
|
/// <summary>
|
|
/// 放箱记录ID
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(40)")]
|
|
public string RecordId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 箱备注
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(200)")]
|
|
public string Remark { get; set; }
|
|
|
|
/// <summary>
|
|
/// 场站
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(40)")]
|
|
public string Yard { get; set; }
|
|
|
|
}
|
|
|
|
}
|