using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Entity.SysEntity
{
///
/// 打印模板
///
[SugarTable("SysPrintTemplate")]
public class SysPrintTemplate : BaseEntity
{
///
/// 模板名称
///
[SugarColumn(ColumnName = "Name")]
public string Name { get; set; }
///
/// 类型
/// 目前只有入库明细打标签
///
[SugarColumn(ColumnName = "Type")]
public string Type { get; set; }
///
/// 默认打印模板1 不启用0
/// 默认值: ((0))
///
[SugarColumn(ColumnName = "Status")]
public string Status { get; set; }
///
/// 定位json
///
[SugarColumn(ColumnName = "PositionJson")]
public string PositionJson { get; set; }
}
}