82 lines
2.6 KiB
C#
82 lines
2.6 KiB
C#
//--------------------------------------------------------------------
|
|
// 此代码由T4模板自动生成 byzhouhang 20210918
|
|
// 生成时间 2023-06-01 13:38:20
|
|
// 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。
|
|
//--------------------------------------------------------------------
|
|
using System;
|
|
using IRaCIS.Core.Domain.Share;
|
|
using System.Collections.Generic;
|
|
namespace IRaCIS.Core.Application.ViewModel
|
|
{
|
|
/// <summary> InternationalizationView 列表视图模型 </summary>
|
|
public class InternationalizationView : InternationalizationAddOrEdit
|
|
{
|
|
public int ShowOrder { get; set; }
|
|
public Guid CreateUserId { get; set; }
|
|
public DateTime CreateTime { get; set; }
|
|
public DateTime UpdateTime { get; set; }
|
|
public Guid UpdateUserId { get; set; }
|
|
|
|
}
|
|
|
|
///<summary>InternationalizationQuery 列表查询参数模型</summary>
|
|
public class InternationalizationQuery : PageInput
|
|
{
|
|
public int? InternationalizationType { get; set; }
|
|
public int? State { get; set; }
|
|
public string? Description { get; set; }
|
|
public string? Code { get; set; }
|
|
public string? Value { get; set; }
|
|
|
|
public string? ValueCN { get; set; }
|
|
|
|
}
|
|
|
|
///<summary> InternationalizationAddOrEdit 列表查询参数模型</summary>
|
|
public class InternationalizationAddOrEdit
|
|
{
|
|
public Guid? Id { get; set; }
|
|
public int State { get; set; }
|
|
public string Description { get; set; } = string.Empty;
|
|
public string Code { get; set; } = string.Empty;
|
|
public string Value { get; set; } = string.Empty;
|
|
public string ValueCN { get; set; } = string.Empty;
|
|
|
|
public string FrontType { get; set; } = string.Empty;
|
|
|
|
public int InternationalizationType { get; set; }
|
|
}
|
|
|
|
public class BatchAddInternationalization
|
|
{
|
|
public int InternationalizationType { get; set; }
|
|
|
|
public int State { get; set; }
|
|
|
|
public List<BatchAddInternationalizationDto> AddList { get; set; }
|
|
}
|
|
|
|
|
|
public class BatchInternationalizationDto
|
|
{
|
|
public string Description { get; set; } = string.Empty;
|
|
public string Code { get; set; } = string.Empty;
|
|
public string Value { get; set; } = string.Empty;
|
|
public string FrontType { get; set; } = string.Empty;
|
|
public string ValueCN { get; set; } = string.Empty;
|
|
}
|
|
|
|
public class BatchAddInternationalizationDto : BatchInternationalizationDto
|
|
{
|
|
|
|
}
|
|
|
|
public class InternationalizationSimpleDto: BatchInternationalizationDto
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|