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.
154 lines
5.1 KiB
154 lines
5.1 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 ICSBicDoc
|
|
{
|
|
public string ID { get; set; }
|
|
//招标编号
|
|
public string BidCode { get; set; }
|
|
//招标币别
|
|
public string BidCurrenCY { get; set; }
|
|
//招标名称
|
|
public string BidName { get; set; }
|
|
//招标负责人
|
|
public string BidUser { get; set; }
|
|
//投标开始时间
|
|
public string StarTime { get; set; }
|
|
//投标结束时间
|
|
public string EndTime { get; set; }
|
|
//招标状态 已保存/已开标/已关闭/已决标
|
|
public string BidStatus { get; set; }
|
|
//招标类型
|
|
public string BidType { get; set; }
|
|
//招标备注
|
|
public string Remark { get; set; }
|
|
//投标次数
|
|
public int TBCount { get; set; }
|
|
//总投标次数
|
|
public int ZTBCount { get; set; }
|
|
//开标人
|
|
public string Tenders { get; set; }
|
|
//开标时间
|
|
public string OpenTime { get; set; }
|
|
//决标人
|
|
public string Bidder { get; set; }
|
|
//决标时间
|
|
public string BidTime { get; set; }
|
|
//最后更新时间
|
|
public string LOGTIME { get; set; }
|
|
//最后更新用户
|
|
public string LOGUSER { get; set; }
|
|
|
|
public string WorkPoint { get; set; }
|
|
public string MUSER { get; set; }
|
|
public string MUSERName { get; set; }
|
|
public DateTime MTIME { get; set; }
|
|
public string EATTRIBUTE1 { get; set; }
|
|
public string GUID { get; set; }
|
|
public string arrayBidDocBD { get; set; }
|
|
public string arrayBidDocGYS { get; set; }
|
|
|
|
}
|
|
//标的信息
|
|
public class ICSBidDocBD
|
|
{
|
|
public string ID { get; set; }
|
|
//招标编号
|
|
public string BidCode { get; set; }
|
|
//物料编码
|
|
public string InvCode { get; set; }
|
|
//类别
|
|
public string ItemType { get; set; }
|
|
//备注
|
|
public string Remark { get; set; }
|
|
//计划采购数量
|
|
public decimal Quantity { get; set; }
|
|
//交期
|
|
public string DeliveryTime { get; set; }
|
|
//行号
|
|
public int RowNo { get; set; }
|
|
//最小竞价幅度
|
|
public decimal BidUprange { get; set; }
|
|
//起价
|
|
public decimal StartingPrice { get; set; }
|
|
public string WorkPoint { get; set; }
|
|
public string MUSER { get; set; }
|
|
public string MUSERName { get; set; }
|
|
public DateTime MTIME { get; set; }
|
|
public string INVCODE { get; set; }
|
|
public string INVNAME { get; set; }
|
|
public string InvStd { get; set; }
|
|
public string INVUOM { get; set; }
|
|
public string EATTRIBUTE1 { get; set; }
|
|
public string Source { get; set; }
|
|
public string cCode { get; set; }
|
|
}
|
|
//供应商信息
|
|
public class ICSBidDocGYS
|
|
{
|
|
public string ID { get; set; }
|
|
//招标编号
|
|
public string BidCode { get; set; }
|
|
//供应商编码
|
|
public string SupplierCode { get; set; }
|
|
//行号
|
|
public int RowNo { get; set; }
|
|
//招标结果确认情况 空、已确认、未确认(Confirmed\Unconfirmed)
|
|
public string ResultConfirmed { get; set; }
|
|
public string WorkPoint { get; set; }
|
|
public string MUSER { get; set; }
|
|
public string MUSERName { get; set; }
|
|
public DateTime MTIME { get; set; }
|
|
public string EATTRIBUTE1 { get; set; }
|
|
public string IsDid { get; set; }
|
|
public string VenCode { get; set; }
|
|
}
|
|
//投标信息
|
|
public class ICSBidInfo
|
|
{
|
|
public string ID { get; set; }
|
|
//招标编号
|
|
public string BidCode { get; set; }
|
|
//供应商编号
|
|
public string SupplierCode { get; set; }
|
|
//是否投标
|
|
public int IsSub { get; set; }
|
|
//是否锁定
|
|
public int IsLock { get; set; }
|
|
//投标人
|
|
public string BidUser { get; set; }
|
|
//投标时间
|
|
public string BidTime { get; set; }
|
|
public string WorkPoint { get; set; }
|
|
public string MUSER { get; set; }
|
|
public string MUSERName { get; set; }
|
|
public DateTime MTIME { get; set; }
|
|
public string EATTRIBUTE1 { get; set; }
|
|
}
|
|
//标案状态变更记录
|
|
public class ICSBidLog
|
|
{
|
|
public string ID { get; set; }
|
|
//招标编号
|
|
public string BidCode { get; set; }
|
|
//操作时间
|
|
public string LogTime { get; set; }
|
|
//操作描述
|
|
public string LogDes { get; set; }
|
|
//操作类型 企业/供应商
|
|
public string LogType { get; set; }
|
|
//操作人
|
|
public string LogUser { get; set; }
|
|
public string WorkPoint { get; set; }
|
|
public string MUSER { get; set; }
|
|
public string MUSERName { get; set; }
|
|
public DateTime MTIME { get; set; }
|
|
public string EATTRIBUTE1 { get; set; }
|
|
}
|
|
}
|