You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
643 B
C#

5 months ago
using DS.WMS.Core.Application.Entity;
using DS.WMS.Core.Fee.Dtos;
namespace DS.WMS.Core.Application.Dtos
{
/// <summary>
/// 按业务提交申请单
/// </summary>
public class ApplicationRequest<TEntity> where TEntity : ApplicationBase
{
/// <summary>
/// 申请单
/// </summary>
public TEntity Application { get; set; }
/// <summary>
/// 业务信息
/// </summary>
public List<BizItem> Items { get; set; } = [];
/// <summary>
/// 查询条件字符串
/// </summary>
public string? QueryString { get; set; }
5 months ago
}
}