using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Yi.Framework.DtoModel.ERP.Purchase
{
///
/// 回款
///
public class CollectionInput
{
///
/// 采购订单id
///
public long PurchaseId { get; set; }
///
///回款钱
///
public float CollectionMoney { get; set; }
}
}