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.Application/Entity/Para/ParaContractNoInfo.cs

80 lines
1.9 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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
{
/// <summary>
/// 参数品名分类
/// </summary>
[SugarTable("para_contract_no")]
[Description("参数合约号")]
public class ParaContractNoInfo : DBEntityTenant
{
/// <summary>
/// 合约号编号
/// </summary>
public string CONTRACT_NO { get; set; }
/// <summary>
/// 合约号名称
/// </summary>
public string CONTRACT_NAME { get; set; }
/// <summary>
/// 合约号备注
/// </summary>
public string CONTRACT_NOTE { get; set; }
/// <summary>
/// 航线代码
/// </summary>
public string LANE_CODE { get; set; }
/// <summary>
/// 航线中文
/// </summary>
public string LANE_CNAME { get; set; }
/// <summary>
/// 目的港代码
/// </summary>
public string POD_CODE { get; set; }
/// <summary>
/// 船公司代码
/// </summary>
public string CARRIER_CODE { get; set; }
/// <summary>
/// 合约方公司全称
/// </summary>
public string CONTRACT_PARTY_NAME { get; set; }
/// <summary>
/// 合约方公司代码
/// </summary>
public string CONTRACT_PARTY_CODE { get; set; }
/// <summary>
/// 合约方联系人
/// </summary>
public string CONTRACT_LINK_NAME { get; set; }
/// <summary>
/// 合约方联系邮件
/// </summary>
public string CONTRACT_LINK_EMAIL { get; set; }
/// <summary>
/// 是否为本公司合约价格 1-是0-否
/// </summary>
public bool IS_OUR_OWN_PRICE { get; set; }
}
}