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

33 lines
697 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ICSSoft.Entity.AssemVouch
{
public class AssemVouch
{
/// <summary>
/// 单据
/// </summary>
public string cTVCode { get; set; }
/// <summary>
/// 用户编号
/// </summary>
public string UserCode { get; set; }
/// <summary>
/// 入库
/// </summary>
public string cIWhCode { get; set; }
/// <summary>
/// 出库
/// </summary>
public string cOWhCode { get; set; }
public List<AssemVouchs> list { get; set; }
}
}