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.
53 lines
1.4 KiB
C#
53 lines
1.4 KiB
C#
using Myshipping.Core.Entity;
|
|
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application.Entity
|
|
{
|
|
/// <summary>
|
|
/// 航线操作和航线管理配置
|
|
/// </summary>
|
|
[SugarTable("booking_line_op_mgr_config")]
|
|
[Description("航线操作和航线管理配置")]
|
|
public class BookingLineOpMgrConfig : DBEntityTenant
|
|
{
|
|
/// <summary>
|
|
/// 船公司代号
|
|
/// </summary>
|
|
public string CARRIERID { get; set; }
|
|
/// <summary>
|
|
/// 船公司
|
|
/// </summary>
|
|
public string CARRIER { get; set; }
|
|
/// <summary>
|
|
/// 航线
|
|
/// </summary>
|
|
public string LineName { get; set; }
|
|
/// <summary>
|
|
/// 部门ID
|
|
/// </summary>
|
|
public long? DeptId { get; set; }
|
|
/// <summary>
|
|
/// 部门名称
|
|
/// </summary>
|
|
public string DeptName { get; set; }
|
|
/// <summary>
|
|
/// 生效日期
|
|
/// </summary>
|
|
public DateTime? StartDate { get; set; }
|
|
/// <summary>
|
|
/// 失效日期
|
|
/// </summary>
|
|
public DateTime? EndDate { get; set; }
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
public string REMARK { get; set; }
|
|
}
|
|
}
|