51 lines
1.6 KiB
C#
51 lines
1.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 string? FolderPath { 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 FolderPath { get; set; }
|
|
public string Code { get; set; }
|
|
public string Value { get; set; }
|
|
public string ValueCN { get; set; }
|
|
|
|
public int InternationalizationType { get; set; }
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|