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.
21 lines
431 B
21 lines
431 B
namespace Entity.Dto.Req.App;
|
|
|
|
/// <summary>
|
|
/// 用户绑定车队
|
|
/// </summary>
|
|
public class CustomerTeamReq
|
|
{
|
|
/// <summary>
|
|
/// 登录号码
|
|
/// </summary>
|
|
public virtual string LoginNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 车队ID
|
|
/// </summary>
|
|
public virtual long TeamId { get; set; }
|
|
/// <summary>
|
|
/// 绑定or解绑
|
|
/// </summary>
|
|
public virtual bool Bind { get; set; }
|
|
} |