dengjunjie
2025-06-11 2ae5aa151f7b40a082e34aa7ed22b4b64edd1d3c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEAWCS_Common
{
    /// <summary>
    /// 申请进出交管区
    /// </summary>
    public class applyTrafficCtlAreaModel
    {
        /// <summary>
        /// 小车编号
        /// </summary>
        public int car_id {  get; set; }
        /// <summary>
        /// 交管区编号
        /// </summary>
        public string areaName {  get; set; }
        /// <summary>
        /// 申请类型<br/>
        /// 1申请进入,2申请离开
        /// </summary>
        public int type {  get; set; }
        /// <summary>
        /// 申请人
        /// </summary>
        public string user {  get; set; }
    }
}