// Admin.NET 项目的版权、商标、专利和其他相关权利均受相应法律法规的保护。使用本项目应遵守相关法律法规和许可证的要求。 // // 本项目主要遵循 MIT 许可证和 Apache 许可证(版本 2.0)进行分发和使用。许可证位于源代码树根目录中的 LICENSE-MIT 和 LICENSE-APACHE 文件。 // // 不得利用本项目从事危害国家安全、扰乱社会秩序、侵犯他人合法权益等法律法规禁止的活动!任何基于本项目二次开发而产生的一切法律纠纷和责任,我们不承担任何责任! using Admin.NET.Core; using SqlSugar; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Vistar.Application.Service.AdministrativeMaterialManagement.Dto; /// /// 行政物料管理输入参数 /// public class AdministrativeMaterialManagementInput { public long idRecord { get; set; } public int? CheckedStatus { get; set; } public int? VersionIndex { get; set; } public bool? IsLatestVersion { get; set; } public DateTime? CreatedDate { get; set; } public DateTime? VersionCreatedDate { get; set; } public DateTime? dateModified { get; set; } public long? UserCreatedId { get; set; } public long? VersionUserCreatedId { get; set; } public long? UserModifiedId { get; set; } public string? RecordGuid { get; set; } public bool? isVisibilityNormal { get; set; } public bool? deleted { get; set; } public string? SubObjectGuid { get; set; } public bool? PreviousStatus { get; set; } public string? revision { get; set; } public byte[]? Record_image160_160 { get; set; } public byte[]? Record_Image320_240 { get; set; } public byte[]? Record_ImageMax { get; set; } public string? _System_objNBS { get; set; } public string? _System_ObjDescription { get; set; } public DateTime? _System_Effectivity_Begin { get; set; } public DateTime? _System_Effectivity_End { get; set; } public string? CheckedOutPc { get; set; } public long? GroupObjId { get; set; } public bool? _CheckOutInProgress { get; set; } public bool? EnableNotifications { get; set; } public string? _system_objConfigurationName { get; set; } public bool? _system_objConfigurationType { get; set; } public string? _system_objConfigurationGuid { get; set; } public string ShowBomFromConfiguration { get; set; } public string _System_ObjNbsAuto { get; set; } public string? _System_DerivedFrom { get; set; } public string? _System_DerivedFrom_RecordGuid { get; set; } public bool? _system_objLinkedCompare { get; set; } public bool? isReleasedVersion { get; set; } public string? _System_WebLink { get; set; } public bool? LinkDrw { get; set; } public string? ParentRecordGuid { get; set; } public string? fld004822 { get; set; } public string? fld004823 { get; set; } public string? fld004824 { get; set; } public string? fld004825 { get; set; } public long? fld004846 { get; set; } public string? fld004846_Rec { get; set; } public DateTime? fld004847 { get; set; } public long? fld004848 { get; set; } public string? fld004848_Rec { get; set; } public DateTime? fld004849 { get; set; } public string? fld004850 { get; set; } public string? fld004851 { get; set; } public string? fld004852 { get; set; } public string? fld004853 { get; set; } public string? fld004854 { get; set; } public string? fld004855 { get; set; } public string? fld004856 { get; set; } public string? fld004857 { get; set; } public string? fld004858 { get; set; } public string? fld004912 { get; set; } public string? fld004913 { get; set; } public string? fld004914 { get; set; } public string? fld004915 { get; set; } public string? fld004916 { get; set; } public string? fld004917 { get; set; } public string? fld004918 { get; set; } public string? fld004919 { get; set; } public string? fld004920 { get; set; } public string? fld004921 { get; set; } public string? fld004922 { get; set; } public DateTime? fld004923 { get; set; } public string? fld004974 { get; set; } public long? fld005285 { get; set; } public long? fld005287 { get; set; } } /// /// 行政物料管理查询输入参数 /// public class PageAdministrativeMaterialManagementInput : BasePageInput { /// /// 物料编码 /// public string? _System_objNBS { get; set; } /// /// 物料描述 /// public string? fld004824 { get; set; } /// /// 创建时间 /// public DateTime? fld004847 { get; set; } /// /// 创建时间范围 /// public DateTime?[] fld004847Range { get; set; } }