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.
BookingHeChuan/Myshipping.Core/Entity/CommonDB/CodeIssueType.cs

85 lines
1.7 KiB
C#

2 years ago
using SqlSugar;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Core.Entity.CommonDB
{
[SugarTable("CodeIssueType")]
[Description("签单方式")]
public class CodeIssueType : CommonDbEntity
{
/// <summary>
/// 代码
/// </summary>
public string Code { get; set; }
/// <summary>
/// 英文名称
/// </summary>
public string EnName { get; set; }
/// <summary>
/// 中文名称
/// </summary>
public string CnName { get; set; }
/// <summary>
/// 描述
/// </summary>
public string Description { get; set; }
/// <summary>
/// 备注
/// </summary>
public string Remark { get; set; }
2 years ago
}
[SugarTable("MappingIssueType")]
[Description("签单方式")]
public class MappingIssueType : CommonDbEntity
{
/// <summary>
/// 代码
/// </summary>
public string Code { get; set; }
/// <summary>
/// 类别
/// </summary>
public string Module { get; set; }
2 years ago
/// <summary>
2 years ago
/// 映射名称
2 years ago
/// </summary>
2 years ago
public string MapName { get; set; }
/// <summary>
/// 映射代码
/// </summary>
public string MapCode { get; set; }
2 years ago
/// <summary>
/// 备注
/// </summary>
public string Remark { get; set; }
/// <summary>
/// 船司代码
/// </summary>
public string CarrierCode { get; set; }
2 years ago
}
2 years ago
2 years ago
}