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.
29 lines
589 B
29 lines
589 B
4 months ago
|
using Admin.NET.Core;
|
||
|
|
||
|
namespace Admin.Bodk.Device.Entities.Dto;
|
||
|
|
||
|
public class Base
|
||
|
{
|
||
|
|
||
|
}
|
||
|
public class BaseInput : BasePageInput
|
||
|
{
|
||
|
|
||
|
}
|
||
|
public class BaseOutput
|
||
|
{
|
||
|
public long Id { get; set; }
|
||
|
public string Name { get; set; }
|
||
|
public string Address { get; set; }
|
||
|
public string Remark { get; set; }
|
||
|
public int Phone { get; set; }
|
||
|
public DateTime CreateTime { get; set; }
|
||
|
|
||
|
public List<Support> SupportList { get; set; }
|
||
|
}
|
||
|
|
||
|
public class BaseAddInput
|
||
|
{
|
||
|
public string Address { get; set; }
|
||
|
public string Name { get; set; }
|
||
|
}
|