You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
105 lines
3.5 KiB
105 lines
3.5 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using static NFine.Domain._03_Entity.SRM.ICSBidDocOA;
|
|
|
|
namespace NFine.Domain._03_Entity.SRM
|
|
{
|
|
public class ICSVenDorPreOAByYL
|
|
{
|
|
public string appName { get; set; }
|
|
public datadetail data;
|
|
public class datadetail
|
|
{
|
|
|
|
public datass data;
|
|
public string templateCode { get; set; }
|
|
public string draft { get; set; }
|
|
public List<attachments> attachments = new List<attachments>();
|
|
public string relateDoc { get; set; }
|
|
public string subject { get; set; }
|
|
}
|
|
|
|
public class datass
|
|
{
|
|
public formmain_0127 formmain_0127 = new formmain_0127();
|
|
public List<formson_0128> formson_0128 = new List<formson_0128>();
|
|
public List<formson_0130> formson_0130 = new List<formson_0130>();
|
|
public List<formson_0129> formson_0129 = new List<formson_0129>();
|
|
public List<thirdAttachments> thirdAttachments = new List<thirdAttachments>();
|
|
}
|
|
/// <summary>
|
|
/// 基础资料
|
|
/// </summary>
|
|
public class formmain_0127
|
|
{
|
|
|
|
public string field0001 { get; set; }
|
|
public string field0002 { get; set; }
|
|
|
|
public string field0019 { get; set; }//开户银行
|
|
|
|
public string field0020 { get; set; }//开户账号
|
|
public string field0021 { get; set; }//税号
|
|
public string field0022 { get; set; }//业务联系人
|
|
public string field0023 { get; set; }//联系人电话
|
|
public string field0024 { get; set; }//联系人邮箱
|
|
public string field0025 { get; set; }//分类编码
|
|
public string field0026 { get; set; }//供应商简称
|
|
public string field0027 { get; set; }//分类编号
|
|
public string field0028 { get; set; }//税号
|
|
public string start_member_id { get; set; }
|
|
public string modify_member_id { get; set; }
|
|
}
|
|
/// <summary>
|
|
/// 意向供货产品
|
|
/// </summary>
|
|
public class formson_0128
|
|
{
|
|
public string field0016 { get; set; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 人员状况
|
|
/// </summary>
|
|
public class formson_0129
|
|
{
|
|
public int field0003 { get; set; }
|
|
public string field0004 { get; set; }
|
|
public string field0005 { get; set; }
|
|
public string field0006 { get; set; }
|
|
public string field0007 { get; set; }
|
|
public string field0008 { get; set; }
|
|
public string field0009 { get; set; }
|
|
}
|
|
/// <summary>
|
|
/// 认证资料
|
|
/// </summary>
|
|
public class formson_0130
|
|
{
|
|
public string field0010 { get; set; }
|
|
public string field0011 { get; set; }
|
|
public string field0012 { get; set; }
|
|
public string field0013 { get; set; }
|
|
public string field0014 { get; set; }
|
|
|
|
public string field0015 { get; set; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 表单附件信息
|
|
/// </summary>
|
|
public class thirdAttachments
|
|
{
|
|
public int subReference { get; set; }
|
|
public string fileUrl { get; set; }
|
|
public int sort { get; set; }
|
|
}
|
|
public class attachments
|
|
{
|
|
public string ID { get; set; }
|
|
}
|
|
}
|
|
}
|