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.

29 lines
531 B
C#

using DS.Module.Core;
using DS.Module.Core.Enums;
using DS.WMS.ContainerManagement.Info.Entity;
using FluentValidation;
using Mapster;
using Masuit.Tools.Systems;
using SqlSugar;
namespace DS.WMS.ContainerManagement.Info.Dtos;
/// <summary>
/// 箱管_处理附件
/// </summary>
public class CM_DealExcelReq
{
/// <summary>
/// 主键编号
/// </summary>
public long Id { get; set; }
public string FormName { get; set; }
public string TableName { get; set; }
public long FileId { get; set; }
}