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.
38 lines
751 B
C#
38 lines
751 B
C#
3 months ago
|
using DS.Module.Core;
|
||
|
using FluentValidation;
|
||
|
using SqlSugar;
|
||
|
|
||
|
namespace DS.WMS.Core.Code.Dtos;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 费用代码导入请求实体
|
||
|
/// </summary>
|
||
|
public class FeeCodeExcelImportReq
|
||
|
{
|
||
|
|
||
|
/// <summary>
|
||
|
/// 费用代码 录入费用是作为检索
|
||
|
/// </summary>
|
||
|
public string Code { get; set; }
|
||
|
/// <summary>
|
||
|
/// 费用名称
|
||
|
/// </summary>
|
||
|
public string Name { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 费用英文名称
|
||
|
/// </summary>
|
||
|
public string EnName { get; set; }
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// 默认币别
|
||
|
/// </summary>
|
||
|
public string DefaultCurrency { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 默认计费标准代码
|
||
|
/// </summary>
|
||
|
public string DefaultUnit { get; set; }
|
||
|
}
|