using System;
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
namespace Models
{
///
/// 订单印刷参数表
///
[SugarTable("EC_OrderPrintParameter")]
public class EC_OrderPrintParameter
{
///
/// 备 注:订单唯一编号
/// 默认值:
///
[SugarColumn(ColumnName="OrderId" ) ]
public int OrderId { get; set; }
///
/// 备 注:印刷参数
/// 默认值:
///
[SugarColumn(ColumnName="PrintParameter" ) ]
public string PrintParameter { get; set; } = null!;
}
}