2023-01-12 18:30:57 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
2023-01-15 14:32:43 +08:00
|
|
|
|
namespace Yi.Framework.Application.Contracts.Student.Dtos
|
2023-01-12 18:30:57 +08:00
|
|
|
|
{
|
2023-01-15 14:32:43 +08:00
|
|
|
|
public class StudentUpdateInputVo
|
2023-01-12 18:30:57 +08:00
|
|
|
|
{
|
2023-01-15 17:32:27 +08:00
|
|
|
|
public long Id { get; set; }
|
2023-01-16 23:05:01 +08:00
|
|
|
|
public string? Name { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public long? Number { get; set; }
|
2023-01-12 18:30:57 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|