26 lines
578 B
C#
26 lines
578 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace OpenAuth.App.ServiceApp.MiManager.Resquest
|
|||
|
|
{
|
|||
|
|
public class MiParkingUserReq
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:停车场id
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:True
|
|||
|
|
/// </summary>
|
|||
|
|
public string ParkingId { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:用户id
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:True
|
|||
|
|
/// </summary>
|
|||
|
|
public List<long> UserId { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|