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.
37 lines
788 B
37 lines
788 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ICSSoft.Entity.PU_ArrivalVouch
|
|
{
|
|
/// <summary>
|
|
/// 采购到货单表头
|
|
/// </summary>
|
|
public class PU_ArrivalVouch
|
|
{
|
|
/// <summary>
|
|
/// 表头主键ID
|
|
/// </summary>
|
|
public string ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 用户编号
|
|
/// </summary>
|
|
public string UserCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 仓库
|
|
/// </summary>
|
|
public string cWhCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否退货
|
|
/// </summary>
|
|
public string IsReturn { get; set; }
|
|
|
|
|
|
public List<PU_ArrivalVouchs> list { get; set; }
|
|
}
|
|
}
|