操控平台后端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
419 B

3 months ago
using Admin.Bodk.Customer.Entities;
using Admin.NET.Core;
namespace Admin.Bodk.Customer.Modules;
public class Dot
{
}
public class CustomerInput:BasePageInput
{
public string Name { get; set; }
}
public class CustomerDot:BasePageInput
{
public string Name { get; set; }
public Sex Sex { get; set; }
public string IdNo { get; set; }
public string PhoneNo { get; set; }
}