chengsc
2025-04-19 50f7c67236579af0b18aa03475dd5d67d68215c0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
 
namespace WMS.Entity.SysEntity
{
    ///<summary>
    ///表头设置表
    ///</summary>
    [SugarTable("SysHeaderSettings")]
    public class SysHeaderSettings : BaseEntity
    {
        /// <summary>
        /// 表格数据路径
        /// Default:
        /// Nullable:True
        /// </summary>
        public string Href { get; set; }
 
        /// <summary>
        /// 表格列
        /// Default:
        /// Nullable:True
        /// </summary>
        public string ColsJson { get; set; }
    }
}