/** 版本信息模板在安装目录下,可自行修改。 * pro_result.cs * * 功 能: N/A * 类 名: pro_result * * Ver 变更日期 负责人 变更内容 * ─────────────────────────────────── * V0.01 2021/3/30 8:46:24 N/A 初版 * * Copyright (c) 2012 Maticsoft Corporation. All rights reserved. *┌──────────────────────────────────┐ *│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │ *│ 版权所有:动软卓越(北京)科技有限公司              │ *└──────────────────────────────────┘ */ using System; namespace DataService.Model { /// /// pro_result:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class pro_result { public pro_result() {} #region Model private string _result_id; private string _subject_id; private string _subject_name; private string _user_id; private string _login_name; private string _real_name; private string _grade; private string _major; private string _practice_content; private DateTime? _examine_time; private decimal _total_result = 0M; private int? _examine_type; private string _examine_kind; private string _examine_term; private int _exam_year = 0; private int _exam_month = 0; private string _batch_id; private string _batch_name; private string _sjms; private string _fault_code; private string _fault_name; private string _province_id; private string _city_id; private string _unit_id; private string _r1; private string _r2; private string _r3; /// /// /// public string result_id { set { _result_id = value; } get { return _result_id; } } /// /// /// public string subject_id { set { _subject_id = value; } get { return _subject_id; } } /// /// /// public string subject_name { set { _subject_name = value; } get { return _subject_name; } } /// /// /// public string user_id { set { _user_id = value; } get { return _user_id; } } /// /// /// public string login_name { set { _login_name = value; } get { return _login_name; } } /// /// /// public string real_name { set { _real_name = value; } get { return _real_name; } } /// /// /// public string grade { set { _grade = value; } get { return _grade; } } /// /// /// public string major { set { _major = value; } get { return _major; } } /// /// /// public string practice_content { set { _practice_content = value; } get { return _practice_content; } } /// /// /// public DateTime? examine_time { set { _examine_time = value; } get { return _examine_time; } } /// /// /// public decimal total_result { set { _total_result = value; } get { return _total_result; } } /// /// /// public int? examine_type { set { _examine_type = value; } get { return _examine_type; } } /// /// /// public string examine_kind { set { _examine_kind = value; } get { return _examine_kind; } } /// /// /// public string examine_term { set { _examine_term = value; } get { return _examine_term; } } /// /// /// public int exam_year { set { _exam_year = value; } get { return _exam_year; } } /// /// /// public int exam_month { set { _exam_month = value; } get { return _exam_month; } } /// /// /// public string batch_id { set { _batch_id = value; } get { return _batch_id; } } /// /// /// public string batch_name { set { _batch_name = value; } get { return _batch_name; } } /// /// /// public string sjms { set { _sjms = value; } get { return _sjms; } } /// /// /// public string fault_code { set { _fault_code = value; } get { return _fault_code; } } /// /// /// public string fault_name { set { _fault_name = value; } get { return _fault_name; } } /// /// /// public string province_id { set { _province_id = value; } get { return _province_id; } } /// /// /// public string city_id { set { _city_id = value; } get { return _city_id; } } /// /// /// public string unit_id { set { _unit_id = value; } get { return _unit_id; } } /// /// /// public string r1 { set { _r1 = value; } get { return _r1; } } /// /// /// public string r2 { set { _r2 = value; } get { return _r2; } } /// /// /// public string r3 { set { _r3 = value; } get { return _r3; } } #endregion Model #region ExtensionModel /// /// 船型描述 /// public string examine_kind_dsc { get; set; } /// /// 存在视频 1 是, 0 否 /// public string has_video { get; set; } /// /// 视频弹窗标题 /// public string video_title { get; set; } /// /// 视频地址 /// public string video_url { get; set; } //省 public string province { get; set; } //市 public string city { get; set; } //单位 public string unit_name { get; set; } #endregion ExtensionModel } }