using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Pcb.Common.Config { /// /// 发邮件模板 /// public class EmailTipTemplate { /// /// 金融需求模板 /// public const string FinanceManagerTemplate= "
" + "

{0}有金融需求,请处理

" + "

{8}{0}提交金融需求,具体如下:

" + "

" + " " + " " + " " + "
数据来源公司名称联系人联系电话融资金额(万元)融资方式创建时间
网站前台{2}{3}{4}{5}{6}{7}
" + "

" + "

点击前往TP系统处理

" + "
"; /// /// 自营订单模板 /// public const string SelfMallOrderTemplate = "" +" " +" " +" " +" " +" " +" " +" " +" " +" " +" " +" " +" " +" " +" " +"
单号/时间状态绑定交易员订单信息
" +" {0}
" +"
{1}
" +"
" +" {2}" +" {3}" +" 公司: {4} 企业用户: [{5}] {6}" +"
" +" [{7}] 采购数量(吨):{8}   采购金额(元): {9} 提货时间:{10} - {11}" +"
" +"
"; } }