using BPA.SAAS.Manage.Core.Base;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BPA.SAAS.Manage.Application.DataBase.Dtos.Batching
{
public class BatchingListQuery : PageInputBase
{
///
/// 编号
///
public string Id { get; set; }
///
/// 原料编码
///
public string Code { get; set; }
///
/// 商品属性 (0成品,1半成品,2,易耗品)
///
public string Aittribute { get; set; }
///
/// 原料名称
///
public string Name { get; set; }
///
/// 原料类型
///
public string TypeID { get; set; }
///
/// 原料类型名称
///
public string TypeName { get; set; }
///
/// 创建时间
///
public DateTime? CreateAt { get; set; }
///
/// 修改时间
///
public DateTime? UpdateAt { get; set; }
///
/// 库存单位
///
public string StockUint { get; set; }
///
/// 库存单位名称
///
public string StockUintName { get; set; }
///
/// 规格属性
///
public string Specs { get; set; }
///
/// 状态
///
public string Status { get; set; }
///
///
///
public string batchingType { get; set; }
///
/// 成本价
///
public decimal? Price { get; set; }
///
/// 净料率
///
public decimal? netrecovery { get; set; }
///
/// 出库单位
///
public string outstockUint { get; set; }
///
/// 换算比例
///
public decimal proportion { get; set; }
///
///
///
public List MembersList { get; set; }
public DateTime? DeleteAt { get; set; }
public string DeleteBy { get; set; }
public string ForeignKeyRe { get; set; }
}
}