锐腾搅拌上料功能
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.

44 lines
1.6 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ICSSoft.Frame.Data.Entity.NcApiEntity
{
public class Create4DEntity
{
public string pk_group { get; set; }
public string pk_org { get; set; }
public string corpoid { get; set; }
public string cwarehouseid { get; set; }
public string cfanaceorgoid { get; set; }
public string cfanaceorgvid { get; set; }
public string vbillcode { get; set; }
public string dbilldate { get; set; }
public string creationtime { get; set; }
public List<Create4DDetailEntity> list { get; set; }
}
public class Create4DDetailEntity
{
public string crowno { get; set; }
public string pk_group { get; set; }
public string cmaterialoid { get; set; }
public string cunitid { get; set; }
public string castunitid { get; set; }
public string vchangerate { get; set; }
public decimal nshouldnum { get; set; }
public decimal nshouldassistnum { get; set; }
public decimal nnum { get; set; }
public decimal nassistnum { get; set; }
public decimal ncostprice { get; set; }
public decimal ncostmny { get; set; }
public string dbizdate { get; set; }
public string drequiredate { get; set; }
public string ccostobject { get; set; }
public string vproductbatch { get; set; }
public string pk_org { get; set; }
public string csourcebillbid { get; set; }
public string csourcebillhid { get; set; }
}
}