25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPA.SAAS.Manage.Application.DataBase.Dtos.Goods
- {
- public class DeviceVersionTemplateImportInputDto
- {
-
- public string Id { get; set; }
-
- /// <summary>
- /// 设备类型
- /// </summary>
- public string DeviceClientType { get; set; }
-
- /// <summary>
- /// 版本
- /// </summary>
- public string Version { get; set; }
-
- /// <summary>
- /// 文件
- /// </summary>
- public IFormFile file { get; set; }
-
- public bool IsAddGoodsTemplate { get; set; } = false;
- }
- }
|