/** 版本信息模板在安装目录下,可自行修改。 * camera_monitoring.cs * * 功 能: N/A * 类 名: camera_monitoring * * Ver 变更日期 负责人 变更内容 * ─────────────────────────────────── * V0.01 2023/12/25 16:58:04 N/A 初版 * * Copyright (c) 2012 Maticsoft Corporation. All rights reserved. *┌──────────────────────────────────┐ *│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │ *│ 版权所有:动软卓越(北京)科技有限公司              │ *└──────────────────────────────────┘ */ using System; namespace DataServer.Model { /// /// camera_monitoring:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class camera_monitoring { public camera_monitoring() {} #region Model private string _cameraid; private string _cameraname; private string _cameraip; private int? _cameratype; private string _cameratime; private string _reserve1; private string _reserve2; private string _reserve3; private string _reserve4; private string _reserve5; /// /// /// public string CameraId { set{ _cameraid=value;} get{return _cameraid;} } /// /// /// public string CameraName { set{ _cameraname=value;} get{return _cameraname;} } /// /// /// public string CameraIP { set{ _cameraip=value;} get{return _cameraip;} } /// /// /// public int? CameraType { set{ _cameratype=value;} get{return _cameratype;} } /// /// /// public string CameraTime { set{ _cameratime=value;} get{return _cameratime;} } /// /// /// public string Reserve1 { set{ _reserve1=value;} get{return _reserve1;} } /// /// /// public string Reserve2 { set{ _reserve2=value;} get{return _reserve2;} } /// /// /// public string Reserve3 { set{ _reserve3=value;} get{return _reserve3;} } /// /// /// public string Reserve4 { set{ _reserve4=value;} get{return _reserve4;} } /// /// /// public string Reserve5 { set{ _reserve5=value;} get{return _reserve5;} } #endregion Model } }