using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MES.Production.Entity
{
public class ApplyCarLock: MongoModel
{
///
/// 车IMEI号
///
public string carid
{
get; set;
}
///
/// 申请类型
///
public int apply_type
{
get; set;
}
///
/// 状态
///
public int state
{
get; set;
}
///
/// 添加人
///
public string add_name
{
get; set;
}
}
}