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.
30 lines
533 B
30 lines
533 B
using Entity.DbModel.Station;
|
|
|
|
namespace Entity.Dto.Req
|
|
{
|
|
public class BatteryOpModelReq : BaseIdReq
|
|
{
|
|
}
|
|
|
|
public class PageBatteryOpReq : BasePageReq
|
|
{
|
|
/// <summary>
|
|
/// Desc:模型id
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public int? ModelId { get; set; }
|
|
}
|
|
|
|
public class AddBatteryOpReq : BatteryOpModel
|
|
{
|
|
}
|
|
|
|
public class UpdateBatteryOpReq : AddBatteryOpReq
|
|
{
|
|
}
|
|
|
|
public class DeleteBatteryOpReq : BaseIdReq
|
|
{
|
|
}
|
|
} |