27 lines
597 B
C#
27 lines
597 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Atomx.Admin.Client.Models
|
|
{
|
|
public class RawMaterialBatchSearch : BaseSearch
|
|
{
|
|
/// <summary>
|
|
/// 原料类型ID
|
|
/// </summary>
|
|
public long MaterialId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 原料归属公司ID
|
|
/// </summary>
|
|
public long CorporationId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 原料归属店铺网点ID
|
|
/// </summary>
|
|
public long StoreId { get; set; }
|
|
}
|
|
}
|
|
|