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