using Admin.NET.Core;
using System.ComponentModel.DataAnnotations;
namespace Admin.NET.Application;
///
/// 用户院校收藏表基础输入参数
///
public class SysUnCollectionBaseInput
{
///
/// Wx用户Id
///
public virtual long WxId { get; set; }
}
///
/// 用户院校收藏表分页查询输入参数
///
public class SysUnCollectionInput : BasePageInput
{
///
/// 关键字查询
///
//public string? SearchKey { get; set; }
}
///
/// 用户院校收藏表增加输入参数
///
public class AddSysUnCollectionInput : SysUnCollectionBaseInput
{
[Required(ErrorMessage = "uId不能为空")]
public long uId { get; set; }
}
///
/// 用户院校收藏表删除输入参数
///
public class DeleteSysUnCollectionInput : BaseIdInput
{
}
///
/// 用户院校收藏表更新输入参数
///
public class UpdateSysUnCollectionInput : SysUnCollectionBaseInput
{
///
/// 主键Id
///
[Required(ErrorMessage = "主键Id不能为空")]
public long Id { get; set; }
}
///
/// 用户院校收藏表主键查询输入参数
///
public class QueryByIdSysUnCollectionInput : DeleteSysUnCollectionInput
{
}