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.
48 lines
1.2 KiB
C#
48 lines
1.2 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 = "sys_template_set", DisableSyncStructure = true)]
|
|
public partial class SysTemplateSet {
|
|
|
|
/// <summary>
|
|
/// 代码
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(10)", IsPrimary = true, IsNullable = false)]
|
|
public string TEMPLATEID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 尺码小数位
|
|
/// </summary>
|
|
[JsonProperty, Column(Name = "CBM_DIGITAL")]
|
|
public short? CBMDIGITAL { get; set; } = 2;
|
|
|
|
/// <summary>
|
|
/// 货描内容设置
|
|
/// </summary>
|
|
[JsonProperty, Column(Name = "DESCRIPTION_SETS", DbType = "varchar(4000)")]
|
|
public string DESCRIPTIONSETS { get; set; }
|
|
|
|
/// <summary>
|
|
/// 毛重小数位
|
|
/// </summary>
|
|
[JsonProperty, Column(Name = "KGS_DIGITAL")]
|
|
public short? KGSDIGITAL { get; set; } = 2;
|
|
|
|
/// <summary>
|
|
/// 唛头内容
|
|
/// </summary>
|
|
[JsonProperty, Column(Name = "MARKS_SET", DbType = "varchar(4000)")]
|
|
public string MARKSSET { get; set; }
|
|
|
|
}
|
|
|
|
}
|