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.
91 lines
3.2 KiB
91 lines
3.2 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace NFine.Domain._03_Entity.SRM
|
|
{
|
|
public class ICSBicDocSellerOA
|
|
{
|
|
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_0031 formmain_0031 = new formmain_0031();
|
|
public List<formson_0032> formson_0032 = new List<formson_0032>();
|
|
public List<formson_0033> formson_0033 = new List<formson_0033>();
|
|
public List<thirdAttachments> thirdAttachments = new List<thirdAttachments>();
|
|
}
|
|
public class formmain_0031
|
|
{
|
|
public string 日期 { get; set; }
|
|
public string 公司 { get; set; }
|
|
public string 编号 { get; set; }
|
|
public string 姓名 { get; set; }
|
|
public string 部门 { get; set; }
|
|
public string 岗位 { get; set; }
|
|
public string 招标编号 { get; set; }
|
|
public string 标案名称 { get; set; }
|
|
public string 招标公司 { get; set; }
|
|
public string 招标负责人 { get; set; }
|
|
public string 招标开始时间 { get; set; }
|
|
public string 招标结束时间 { get; set; }
|
|
public string 是否缴纳保证金 { get; set; }
|
|
public string 保证金额 { get; set; }
|
|
public string 备注说明 { get; set; }
|
|
public int 附件 { get; set; }
|
|
}
|
|
/// <summary>
|
|
/// 标的明细
|
|
/// </summary>
|
|
public class formson_0032
|
|
{
|
|
public string 物料编码 { get; set; }
|
|
public string 物料名称 { get; set; }
|
|
public string 规格型号 { get; set; }
|
|
public string 物料单位 { get; set; }
|
|
public decimal 采购数量 { get; set; }
|
|
public string 交期 { get; set; }
|
|
public string 备注 { get; set; }
|
|
public string 中标供应商报价 { get; set; }
|
|
}
|
|
/// <summary>
|
|
/// 供应商明细
|
|
/// </summary>
|
|
public class formson_0033
|
|
{
|
|
public string 邀标供应商编码 { get; set; }
|
|
public string 邀标供应商税号 { get; set; }
|
|
public string 邀标供应商名称 { get; set; }
|
|
public string 邀标供应商备注 { get; set; }
|
|
public int 是否中标 { get; set; }
|
|
public decimal 中标报价 { 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; }
|
|
}
|
|
}
|
|
}
|