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.
48 lines
1.7 KiB
48 lines
1.7 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 ICSBidInfoDetail
|
|
{
|
|
public string BDID { get; set; }
|
|
public decimal CastPrice { get; set; }
|
|
public string ENTTRIBUTE1 { get; set; }
|
|
public string ID { get; set; }
|
|
public string InfoID { get; set; }
|
|
public bool IsCast { get; set; }
|
|
public bool IsDid { get; set; }
|
|
public DateTime MTIME { get; set; }
|
|
public string MUSER { get; set; }
|
|
public string MUSERName { get; set; }
|
|
|
|
public string Remarks { get; set; }
|
|
public int RowNo { get; set; }
|
|
public string WorkPoint { get; set; }
|
|
public string BidCode { get; set; }
|
|
public string ZBVendorCode { get; set; }
|
|
public decimal WSCastPrice { get; set; }
|
|
public int TaxAmount { get; set; }
|
|
public string Currency { get; set; }
|
|
public decimal MinPackQuantity { get; set; }
|
|
public decimal MOQ { get; set; }
|
|
public string Futures { get; set; }
|
|
public string VenFullName { get; set; }
|
|
public string Purchaser { get; set; }
|
|
public string Origin { get; set; }
|
|
public decimal DailyMetalPrices { get; set; }
|
|
public decimal ProcessingFee { get; set; }
|
|
public decimal? ExchangeRate { get; set; }
|
|
public decimal? Tariff { get; set; }
|
|
public decimal? VAT { get; set; }
|
|
public decimal? TransportFee { get; set; }
|
|
public string TradeMethod { get; set; }
|
|
public string arrayShellFabricDetail { get; set; }
|
|
|
|
public string VenRemark { get; set; }
|
|
|
|
}
|
|
}
|