using Admin.NET.Core; using System.ComponentModel.DataAnnotations; namespace Admin.NET.Application; /// /// 生产线基础输入参数 /// public class ProductionLineBaseInput { /// /// 名称 /// public virtual string? Name { get; set; } /// /// 地址 /// public virtual string? Address { get; set; } /// /// 备注 /// public virtual string? Remarks { get; set; } /// /// 租户Id /// public virtual long? TenantId { get; set; } /// /// 创建时间 /// public virtual DateTime? CreateTime { get; set; } /// /// 更新时间 /// public virtual DateTime? UpdateTime { get; set; } /// /// 创建者Id /// public virtual long? CreateUserId { get; set; } /// /// 创建者姓名 /// public virtual string? CreateUserName { get; set; } /// /// 修改者Id /// public virtual long? UpdateUserId { get; set; } /// /// 修改者姓名 /// public virtual string? UpdateUserName { get; set; } /// /// 软删除 /// public virtual bool IsDelete { get; set; } } /// /// 生产线分页查询输入参数 /// public class ProductionLineInput : BasePageInput { /// /// 关键字查询 /// public string? SearchKey { get; set; } /// /// 名称 /// public string? Name { get; set; } /// /// 地址 /// public string? Address { get; set; } /// /// 备注 /// public string? Remarks { get; set; } } /// /// 生产线增加输入参数 /// public class AddProductionLineInput : ProductionLineBaseInput { /// /// 软删除 /// [Required(ErrorMessage = "软删除不能为空")] public override bool IsDelete { get; set; } } /// /// 生产线删除输入参数 /// public class DeleteProductionLineInput : BaseIdInput { } /// /// 生产线更新输入参数 /// public class UpdateProductionLineInput : ProductionLineBaseInput { /// /// 主键Id /// [Required(ErrorMessage = "主键Id不能为空")] public long Id { get; set; } } public class UpdateStateProductionLineInput { /// /// 主键Id /// [Required(ErrorMessage = "主键Id不能为空")] public long Id { get; set; } /// /// 状态 /// public int State { get; set; } } /// /// 生产线主键查询输入参数 /// public class QueryByIdProductionLineInput : DeleteProductionLineInput { }