hwh
2024-06-12 cae008d8286b7ee846eb91e79350a9c57166882d
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
29
30
31
32
33
34
35
36
37
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
 
namespace WMS.Entity.SysEntity
{
    /// <summary>
    /// 打印模板
    ///</summary>
    [SugarTable("SysPrintTemplate")]
    public class SysPrintTemplate : BaseEntity
    {
        /// <summary>
        ///  模板名称
        ///</summary>
        [SugarColumn(ColumnName = "Name")]
        public string Name { get; set; }
        /// <summary>
        ///  类型
        ///  目前只有入库明细打标签
        ///</summary>
        [SugarColumn(ColumnName = "Type")]
        public string Type { get; set; }
        /// <summary>
        /// 默认打印模板1 不启用0
        /// 默认值: ((0))
        ///</summary>
        [SugarColumn(ColumnName = "Status")]
        public string Status { get; set; }
        /// <summary>
        /// 定位json
        ///</summary>
        [SugarColumn(ColumnName = "PositionJson")]
        public string PositionJson { get; set; }
    }
}