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.
93 lines
3.8 KiB
93 lines
3.8 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace ICSSoft.Frame.Data.Entity.NcApiEntity
|
|
{
|
|
public class CreateSaleDispatchEntity
|
|
{
|
|
public string pk_group { get; set; }
|
|
public string pk_org { get; set; }
|
|
public string dbilldate { get; set; }
|
|
public string creationtime { get; set; }
|
|
public string dmakedate { get; set; }
|
|
public string cbiztypeid { get; set; }
|
|
public List<CreateSaleDispatchDetailEntity> list { get; set; }
|
|
}
|
|
|
|
public class CreateSaleDispatchDetailEntity
|
|
{
|
|
public string cbiztypeid { get; set; }//待修改
|
|
public string crowno { get; set; }
|
|
public string cordercustid { get; set; }
|
|
public string cmaterialid { get; set; }
|
|
public string cmaterialvid { get; set; }
|
|
public string castunitid { get; set; }
|
|
public decimal nastnum { get; set; }
|
|
public string vchangerate { get; set; }
|
|
public string cqtunitid { get; set; }
|
|
public decimal nqtunitnum { get; set; }
|
|
public string vqtunitrate { get; set; }
|
|
public string corigcurrencyid { get; set; }
|
|
public decimal nexchangerate { get; set; }
|
|
public string ccurrencyid { get; set; }
|
|
public string ctaxcodeid { get; set; }
|
|
public decimal ntaxrate { get; set; }
|
|
public decimal ncaltaxmny { get; set; }
|
|
public decimal ndiscountrate { get; set; }
|
|
public decimal nitemdiscountrate { get; set; }
|
|
public decimal norigtaxprice { get; set; }
|
|
public decimal norigprice { get; set; }
|
|
public decimal norigtaxnetprice { get; set; }
|
|
public decimal norignetprice { get; set; }
|
|
public decimal nqtorigtaxprice { get; set; }
|
|
public decimal nqtorigprice { get; set; }
|
|
public decimal nqtorigtaxnetprc { get; set; }
|
|
public decimal nqtorignetprice { get; set; }
|
|
public decimal norigmny { get; set; }
|
|
public decimal norigtaxmny { get; set; }
|
|
public decimal norigdiscount { get; set; }
|
|
public decimal ntaxprice { get; set; }
|
|
public decimal nprice { get; set; }
|
|
public decimal ntaxnetprice { get; set; }
|
|
public decimal nnetprice { get; set; }
|
|
public decimal nqttaxprice { get; set; }
|
|
public decimal nqtprice { get; set; }
|
|
public decimal nqttaxnetprice { get; set; }
|
|
public decimal nqtnetprice { get; set; }
|
|
public decimal ntax { get; set; }
|
|
public decimal nmny { get; set; }
|
|
public decimal ntaxmny { get; set; }
|
|
public decimal ndiscount { get; set; }
|
|
public string vfirstcode { get; set; }
|
|
public string vfirstrowno { get; set; }
|
|
public string cfirstid { get; set; }
|
|
public string cfirstbid { get; set; }
|
|
public string vsrccode { get; set; }
|
|
public string vsrcrowno { get; set; }
|
|
public string csrcid { get; set; }
|
|
public string csrcbid { get; set; }
|
|
public string csaleorgid { get; set; }
|
|
public string csaleorgvid { get; set; }
|
|
public string csendstockorgid { get; set; }
|
|
public string csendstockorgvid { get; set; }
|
|
public string csendstordocid { get; set; }
|
|
public string creceivecustid { get; set; }
|
|
public string dsenddate { get; set; }
|
|
public string dreceivedate { get; set; }
|
|
public string carorgvid { get; set; }
|
|
public string csettleorgid { get; set; }
|
|
public string cdeptid { get; set; }
|
|
public string cdeptvid { get; set; }
|
|
public string crececountryid { get; set; }
|
|
public string csendcountryid { get; set; }
|
|
public string ctaxcountryid { get; set; }
|
|
public string vfirstbilldate { get; set; }
|
|
public string dbilldate { get; set; }
|
|
public string pk_org { get; set; }
|
|
public string cinvoicecustid { get; set; }
|
|
}
|
|
|
|
|
|
}
|