using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Business.ResourceExamineManagement.Dto
{
public class PrPurchaseDto
{
///
/// 供应商id
///
public long? pr_purchaseid { get; set; }
///
/// 数量
///
public decimal num { get; set; }
///
/// 占比
///
public decimal ratio { get; set; }
///
/// 优先级
///
public int quota_priority { get; set; }
///
/// 配额比例
///
public decimal quota_rate { get; set; }
}
}