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.
36 lines
873 B
C#
36 lines
873 B
C#
using System;
|
|
using SqlSugar;
|
|
using System.ComponentModel;
|
|
using Myshipping.Core.Entity;
|
|
namespace Myshipping.Application.Entity
|
|
{
|
|
/// <summary>
|
|
/// 订舱状态
|
|
/// </summary>
|
|
[SugarTable("booking_exceltemplate")]
|
|
[Description("EXCEL模板明细")]
|
|
public class BookingExcelTemplate : PrimaryKeyEntity
|
|
{
|
|
/// <summary>
|
|
/// 父键
|
|
/// </summary>
|
|
public long Pid { get; set; }
|
|
/// <summary>
|
|
/// 字段名称
|
|
/// </summary>
|
|
public string Field { get; set; }
|
|
/// <summary>
|
|
/// 行
|
|
/// </summary>
|
|
public int Row { get; set; }
|
|
/// <summary>
|
|
/// 列
|
|
/// </summary>
|
|
public int Column { get; set; }
|
|
|
|
/// <summary>
|
|
/// 默认内容
|
|
/// </summary>
|
|
public string Describe { get; set; }
|
|
}
|
|
} |