/***********************************************************************
* Project: baifenBinfa
* ProjectName: 百分兵法管理系统
* Web: http://chuanyin.com
* Author:
* Email:
* CreateTime: 202403/02
* Description: 暂无
***********************************************************************/
using System.Collections.Generic;
using CoreCms.Net.Model.Entities;
namespace CoreCms.Net.Model.FromBody
{
public class FMCreateStock
{
///
/// 广告位置
///
public CoreCmsStock model { get; set; }
public List items { get; set; }
}
public class FMCreateStockItem
{
public int nums { get; set; }
public int productId { get; set; }
}
}