//------------------------------------------------------------------------------ // // 此代码是根据模板生成的。 // // 手动更改此文件可能会导致应用程序中发生异常行为。 // 如果重新生成代码,则将覆盖对此文件的手动更改。 // //------------------------------------------------------------------------------ using System; using System.ComponentModel; using System.Data.EntityClient; using System.Data.Objects; using System.Data.Objects.DataClasses; using System.Linq; using System.Runtime.Serialization; using System.Xml.Serialization; [assembly: EdmSchemaAttribute()] #region EDM 关系源元数据 [assembly: EdmRelationshipAttribute("TEST", "FK_sys_dict_data_sys_dict_type_TypeId", "sys_dict_type", System.Data.Metadata.Edm.RelationshipMultiplicity.One, typeof(TEST.sys_dict_type), "sys_dict_data", System.Data.Metadata.Edm.RelationshipMultiplicity.Many, typeof(TEST.sys_dict_data), true)] [assembly: EdmRelationshipAttribute("TEST", "FK_sys_emp_ext_org_pos_sys_emp_SysEmpId", "sys_emp", System.Data.Metadata.Edm.RelationshipMultiplicity.One, typeof(TEST.sys_emp), "sys_emp_ext_org_pos", System.Data.Metadata.Edm.RelationshipMultiplicity.Many, typeof(TEST.sys_emp_ext_org_pos), true)] [assembly: EdmRelationshipAttribute("TEST", "FK_sys_emp_ext_org_pos_sys_org_SysOrgId", "sys_org", System.Data.Metadata.Edm.RelationshipMultiplicity.One, typeof(TEST.sys_org), "sys_emp_ext_org_pos", System.Data.Metadata.Edm.RelationshipMultiplicity.Many, typeof(TEST.sys_emp_ext_org_pos), true)] [assembly: EdmRelationshipAttribute("TEST", "FK_sys_emp_ext_org_pos_sys_pos_SysPosId", "sys_pos", System.Data.Metadata.Edm.RelationshipMultiplicity.One, typeof(TEST.sys_pos), "sys_emp_ext_org_pos", System.Data.Metadata.Edm.RelationshipMultiplicity.Many, typeof(TEST.sys_emp_ext_org_pos), true)] [assembly: EdmRelationshipAttribute("TEST", "FK_sys_low_code_module_database_sys_low_code_module_SysLowCodeId", "sys_low_code_module", System.Data.Metadata.Edm.RelationshipMultiplicity.One, typeof(TEST.sys_low_code_module), "sys_low_code_module_database", System.Data.Metadata.Edm.RelationshipMultiplicity.Many, typeof(TEST.sys_low_code_module_database), true)] [assembly: EdmRelationshipAttribute("TEST", "FK_wms_place_wms_area_AreaId", "wms_area", System.Data.Metadata.Edm.RelationshipMultiplicity.One, typeof(TEST.wms_area), "wms_place", System.Data.Metadata.Edm.RelationshipMultiplicity.Many, typeof(TEST.wms_place), true)] [assembly: EdmRelationshipAttribute("TEST", "FK_wms_materialcontainer_wms_container_ContainerId", "wms_container", System.Data.Metadata.Edm.RelationshipMultiplicity.One, typeof(TEST.wms_container), "wms_materialcontainer", System.Data.Metadata.Edm.RelationshipMultiplicity.Many, typeof(TEST.wms_materialcontainer), true)] [assembly: EdmRelationshipAttribute("TEST", "FK_wms_materialcontainer_wms_material_MaterialId", "wms_material", System.Data.Metadata.Edm.RelationshipMultiplicity.One, typeof(TEST.wms_material), "wms_materialcontainer", System.Data.Metadata.Edm.RelationshipMultiplicity.Many, typeof(TEST.wms_materialcontainer), true)] [assembly: EdmRelationshipAttribute("TEST", "sys_emp_pos", "sys_emp", System.Data.Metadata.Edm.RelationshipMultiplicity.Many, typeof(TEST.sys_emp), "sys_pos", System.Data.Metadata.Edm.RelationshipMultiplicity.Many, typeof(TEST.sys_pos))] [assembly: EdmRelationshipAttribute("TEST", "sys_role_data_scope", "sys_org", System.Data.Metadata.Edm.RelationshipMultiplicity.Many, typeof(TEST.sys_org), "sys_role", System.Data.Metadata.Edm.RelationshipMultiplicity.Many, typeof(TEST.sys_role))] [assembly: EdmRelationshipAttribute("TEST", "sys_role_menu", "sys_menu", System.Data.Metadata.Edm.RelationshipMultiplicity.Many, typeof(TEST.sys_menu), "sys_role", System.Data.Metadata.Edm.RelationshipMultiplicity.Many, typeof(TEST.sys_role))] [assembly: EdmRelationshipAttribute("TEST", "sys_user_data_scope", "sys_org", System.Data.Metadata.Edm.RelationshipMultiplicity.Many, typeof(TEST.sys_org), "sys_user", System.Data.Metadata.Edm.RelationshipMultiplicity.Many, typeof(TEST.sys_user))] [assembly: EdmRelationshipAttribute("TEST", "sys_user_role", "sys_role", System.Data.Metadata.Edm.RelationshipMultiplicity.Many, typeof(TEST.sys_role), "sys_user", System.Data.Metadata.Edm.RelationshipMultiplicity.Many, typeof(TEST.sys_user))] #endregion namespace TEST { #region 上下文 /// /// 没有元数据文档可用。 /// public partial class TESTEntities : ObjectContext { #region 构造函数 /// /// 请使用应用程序配置文件的“TESTEntities”部分中的连接字符串初始化新 TESTEntities 对象。 /// public TESTEntities() : base("name=TESTEntities", "TESTEntities") { this.ContextOptions.LazyLoadingEnabled = true; OnContextCreated(); } /// /// 初始化新的 TESTEntities 对象。 /// public TESTEntities(string connectionString) : base(connectionString, "TESTEntities") { this.ContextOptions.LazyLoadingEnabled = true; OnContextCreated(); } /// /// 初始化新的 TESTEntities 对象。 /// public TESTEntities(EntityConnection connection) : base(connection, "TESTEntities") { this.ContextOptions.LazyLoadingEnabled = true; OnContextCreated(); } #endregion #region 分部方法 partial void OnContextCreated(); #endregion #region ObjectSet 属性 /// /// 没有元数据文档可用。 /// public ObjectSet C__EFMigrationsHistory { get { if ((_C__EFMigrationsHistory == null)) { _C__EFMigrationsHistory = base.CreateObjectSet("C__EFMigrationsHistory"); } return _C__EFMigrationsHistory; } } private ObjectSet _C__EFMigrationsHistory; /// /// 没有元数据文档可用。 /// public ObjectSet Base_SysExceptionInfo { get { if ((_Base_SysExceptionInfo == null)) { _Base_SysExceptionInfo = base.CreateObjectSet("Base_SysExceptionInfo"); } return _Base_SysExceptionInfo; } } private ObjectSet _Base_SysExceptionInfo; /// /// 没有元数据文档可用。 /// public ObjectSet sys_app { get { if ((_sys_app == null)) { _sys_app = base.CreateObjectSet("sys_app"); } return _sys_app; } } private ObjectSet _sys_app; /// /// 没有元数据文档可用。 /// public ObjectSet sys_code_gen { get { if ((_sys_code_gen == null)) { _sys_code_gen = base.CreateObjectSet("sys_code_gen"); } return _sys_code_gen; } } private ObjectSet _sys_code_gen; /// /// 没有元数据文档可用。 /// public ObjectSet sys_code_gen_config { get { if ((_sys_code_gen_config == null)) { _sys_code_gen_config = base.CreateObjectSet("sys_code_gen_config"); } return _sys_code_gen_config; } } private ObjectSet _sys_code_gen_config; /// /// 没有元数据文档可用。 /// public ObjectSet sys_code_modular { get { if ((_sys_code_modular == null)) { _sys_code_modular = base.CreateObjectSet("sys_code_modular"); } return _sys_code_modular; } } private ObjectSet _sys_code_modular; /// /// 没有元数据文档可用。 /// public ObjectSet sys_config { get { if ((_sys_config == null)) { _sys_config = base.CreateObjectSet("sys_config"); } return _sys_config; } } private ObjectSet _sys_config; /// /// 没有元数据文档可用。 /// public ObjectSet sys_dict_data { get { if ((_sys_dict_data == null)) { _sys_dict_data = base.CreateObjectSet("sys_dict_data"); } return _sys_dict_data; } } private ObjectSet _sys_dict_data; /// /// 没有元数据文档可用。 /// public ObjectSet sys_dict_type { get { if ((_sys_dict_type == null)) { _sys_dict_type = base.CreateObjectSet("sys_dict_type"); } return _sys_dict_type; } } private ObjectSet _sys_dict_type; /// /// 没有元数据文档可用。 /// public ObjectSet sys_emp { get { if ((_sys_emp == null)) { _sys_emp = base.CreateObjectSet("sys_emp"); } return _sys_emp; } } private ObjectSet _sys_emp; /// /// 没有元数据文档可用。 /// public ObjectSet sys_emp_ext_org_pos { get { if ((_sys_emp_ext_org_pos == null)) { _sys_emp_ext_org_pos = base.CreateObjectSet("sys_emp_ext_org_pos"); } return _sys_emp_ext_org_pos; } } private ObjectSet _sys_emp_ext_org_pos; /// /// 没有元数据文档可用。 /// public ObjectSet sys_file { get { if ((_sys_file == null)) { _sys_file = base.CreateObjectSet("sys_file"); } return _sys_file; } } private ObjectSet _sys_file; /// /// 没有元数据文档可用。 /// public ObjectSet sys_forms { get { if ((_sys_forms == null)) { _sys_forms = base.CreateObjectSet("sys_forms"); } return _sys_forms; } } private ObjectSet _sys_forms; /// /// 没有元数据文档可用。 /// public ObjectSet sys_log_audit { get { if ((_sys_log_audit == null)) { _sys_log_audit = base.CreateObjectSet("sys_log_audit"); } return _sys_log_audit; } } private ObjectSet _sys_log_audit; /// /// 没有元数据文档可用。 /// public ObjectSet sys_log_ex { get { if ((_sys_log_ex == null)) { _sys_log_ex = base.CreateObjectSet("sys_log_ex"); } return _sys_log_ex; } } private ObjectSet _sys_log_ex; /// /// 没有元数据文档可用。 /// public ObjectSet sys_log_op { get { if ((_sys_log_op == null)) { _sys_log_op = base.CreateObjectSet("sys_log_op"); } return _sys_log_op; } } private ObjectSet _sys_log_op; /// /// 没有元数据文档可用。 /// public ObjectSet sys_log_vis { get { if ((_sys_log_vis == null)) { _sys_log_vis = base.CreateObjectSet("sys_log_vis"); } return _sys_log_vis; } } private ObjectSet _sys_log_vis; /// /// 没有元数据文档可用。 /// public ObjectSet sys_low_code_module { get { if ((_sys_low_code_module == null)) { _sys_low_code_module = base.CreateObjectSet("sys_low_code_module"); } return _sys_low_code_module; } } private ObjectSet _sys_low_code_module; /// /// 没有元数据文档可用。 /// public ObjectSet sys_low_code_module_database { get { if ((_sys_low_code_module_database == null)) { _sys_low_code_module_database = base.CreateObjectSet("sys_low_code_module_database"); } return _sys_low_code_module_database; } } private ObjectSet _sys_low_code_module_database; /// /// 没有元数据文档可用。 /// public ObjectSet sys_menu { get { if ((_sys_menu == null)) { _sys_menu = base.CreateObjectSet("sys_menu"); } return _sys_menu; } } private ObjectSet _sys_menu; /// /// 没有元数据文档可用。 /// public ObjectSet sys_notice { get { if ((_sys_notice == null)) { _sys_notice = base.CreateObjectSet("sys_notice"); } return _sys_notice; } } private ObjectSet _sys_notice; /// /// 没有元数据文档可用。 /// public ObjectSet sys_notice_user { get { if ((_sys_notice_user == null)) { _sys_notice_user = base.CreateObjectSet("sys_notice_user"); } return _sys_notice_user; } } private ObjectSet _sys_notice_user; /// /// 没有元数据文档可用。 /// public ObjectSet sys_org { get { if ((_sys_org == null)) { _sys_org = base.CreateObjectSet("sys_org"); } return _sys_org; } } private ObjectSet _sys_org; /// /// 没有元数据文档可用。 /// public ObjectSet sys_pos { get { if ((_sys_pos == null)) { _sys_pos = base.CreateObjectSet("sys_pos"); } return _sys_pos; } } private ObjectSet _sys_pos; /// /// 没有元数据文档可用。 /// public ObjectSet sys_role { get { if ((_sys_role == null)) { _sys_role = base.CreateObjectSet("sys_role"); } return _sys_role; } } private ObjectSet _sys_role; /// /// 没有元数据文档可用。 /// public ObjectSet sys_timer { get { if ((_sys_timer == null)) { _sys_timer = base.CreateObjectSet("sys_timer"); } return _sys_timer; } } private ObjectSet _sys_timer; /// /// 没有元数据文档可用。 /// public ObjectSet sys_user { get { if ((_sys_user == null)) { _sys_user = base.CreateObjectSet("sys_user"); } return _sys_user; } } private ObjectSet _sys_user; /// /// 没有元数据文档可用。 /// public ObjectSet ware_container_vs_material { get { if ((_ware_container_vs_material == null)) { _ware_container_vs_material = base.CreateObjectSet("ware_container_vs_material"); } return _ware_container_vs_material; } } private ObjectSet _ware_container_vs_material; /// /// 没有元数据文档可用。 /// public ObjectSet ware_device_wareing { get { if ((_ware_device_wareing == null)) { _ware_device_wareing = base.CreateObjectSet("ware_device_wareing"); } return _ware_device_wareing; } } private ObjectSet _ware_device_wareing; /// /// 没有元数据文档可用。 /// public ObjectSet ware_flow_record { get { if ((_ware_flow_record == null)) { _ware_flow_record = base.CreateObjectSet("ware_flow_record"); } return _ware_flow_record; } } private ObjectSet _ware_flow_record; /// /// 没有元数据文档可用。 /// public ObjectSet ware_location_vs_container { get { if ((_ware_location_vs_container == null)) { _ware_location_vs_container = base.CreateObjectSet("ware_location_vs_container"); } return _ware_location_vs_container; } } private ObjectSet _ware_location_vs_container; /// /// 没有元数据文档可用。 /// public ObjectSet ware_site { get { if ((_ware_site == null)) { _ware_site = base.CreateObjectSet("ware_site"); } return _ware_site; } } private ObjectSet _ware_site; /// /// 没有元数据文档可用。 /// public ObjectSet ware_task { get { if ((_ware_task == null)) { _ware_task = base.CreateObjectSet("ware_task"); } return _ware_task; } } private ObjectSet _ware_task; /// /// 没有元数据文档可用。 /// public ObjectSet ware_task_bak { get { if ((_ware_task_bak == null)) { _ware_task_bak = base.CreateObjectSet("ware_task_bak"); } return _ware_task_bak; } } private ObjectSet _ware_task_bak; /// /// 没有元数据文档可用。 /// public ObjectSet ware_task_sub { get { if ((_ware_task_sub == null)) { _ware_task_sub = base.CreateObjectSet("ware_task_sub"); } return _ware_task_sub; } } private ObjectSet _ware_task_sub; /// /// 没有元数据文档可用。 /// public ObjectSet ware_task_sub_bak { get { if ((_ware_task_sub_bak == null)) { _ware_task_sub_bak = base.CreateObjectSet("ware_task_sub_bak"); } return _ware_task_sub_bak; } } private ObjectSet _ware_task_sub_bak; /// /// 没有元数据文档可用。 /// public ObjectSet wms_area { get { if ((_wms_area == null)) { _wms_area = base.CreateObjectSet("wms_area"); } return _wms_area; } } private ObjectSet _wms_area; /// /// 没有元数据文档可用。 /// public ObjectSet wms_container { get { if ((_wms_container == null)) { _wms_container = base.CreateObjectSet("wms_container"); } return _wms_container; } } private ObjectSet _wms_container; /// /// 没有元数据文档可用。 /// public ObjectSet wms_container_type { get { if ((_wms_container_type == null)) { _wms_container_type = base.CreateObjectSet("wms_container_type"); } return _wms_container_type; } } private ObjectSet _wms_container_type; /// /// 没有元数据文档可用。 /// public ObjectSet wms_location_type { get { if ((_wms_location_type == null)) { _wms_location_type = base.CreateObjectSet("wms_location_type"); } return _wms_location_type; } } private ObjectSet _wms_location_type; /// /// 没有元数据文档可用。 /// public ObjectSet wms_material { get { if ((_wms_material == null)) { _wms_material = base.CreateObjectSet("wms_material"); } return _wms_material; } } private ObjectSet _wms_material; /// /// 没有元数据文档可用。 /// public ObjectSet wms_materialcontainer { get { if ((_wms_materialcontainer == null)) { _wms_materialcontainer = base.CreateObjectSet("wms_materialcontainer"); } return _wms_materialcontainer; } } private ObjectSet _wms_materialcontainer; /// /// 没有元数据文档可用。 /// public ObjectSet wms_materialstock { get { if ((_wms_materialstock == null)) { _wms_materialstock = base.CreateObjectSet("wms_materialstock"); } return _wms_materialstock; } } private ObjectSet _wms_materialstock; /// /// 没有元数据文档可用。 /// public ObjectSet wms_part { get { if ((_wms_part == null)) { _wms_part = base.CreateObjectSet("wms_part"); } return _wms_part; } } private ObjectSet _wms_part; /// /// 没有元数据文档可用。 /// public ObjectSet wms_place { get { if ((_wms_place == null)) { _wms_place = base.CreateObjectSet("wms_place"); } return _wms_place; } } private ObjectSet _wms_place; /// /// 没有元数据文档可用。 /// public ObjectSet wms_task { get { if ((_wms_task == null)) { _wms_task = base.CreateObjectSet("wms_task"); } return _wms_task; } } private ObjectSet _wms_task; /// /// 没有元数据文档可用。 /// public ObjectSet v_empty_location { get { if ((_v_empty_location == null)) { _v_empty_location = base.CreateObjectSet("v_empty_location"); } return _v_empty_location; } } private ObjectSet _v_empty_location; /// /// 没有元数据文档可用。 /// public ObjectSet v_ware_inventory_by_container { get { if ((_v_ware_inventory_by_container == null)) { _v_ware_inventory_by_container = base.CreateObjectSet("v_ware_inventory_by_container"); } return _v_ware_inventory_by_container; } } private ObjectSet _v_ware_inventory_by_container; #endregion #region AddTo 方法 /// /// 用于向 C__EFMigrationsHistory EntitySet 添加新对象的方法,已弃用。请考虑改用关联的 ObjectSet<T> 属性的 .Add 方法。 /// public void AddToC__EFMigrationsHistory(C__EFMigrationsHistory c__EFMigrationsHistory) { base.AddObject("C__EFMigrationsHistory", c__EFMigrationsHistory); } /// /// 用于向 Base_SysExceptionInfo EntitySet 添加新对象的方法,已弃用。请考虑改用关联的 ObjectSet<T> 属性的 .Add 方法。 /// public void AddToBase_SysExceptionInfo(Base_SysExceptionInfo base_SysExceptionInfo) { base.AddObject("Base_SysExceptionInfo", base_SysExceptionInfo); } /// /// 用于向 sys_app EntitySet 添加新对象的方法,已弃用。请考虑改用关联的 ObjectSet<T> 属性的 .Add 方法。 /// public void AddTosys_app(sys_app sys_app) { base.AddObject("sys_app", sys_app); } /// /// 用于向 sys_code_gen EntitySet 添加新对象的方法,已弃用。请考虑改用关联的 ObjectSet<T> 属性的 .Add 方法。 /// public void AddTosys_code_gen(sys_code_gen sys_code_gen) { base.AddObject("sys_code_gen", sys_code_gen); } /// /// 用于向 sys_code_gen_config EntitySet 添加新对象的方法,已弃用。请考虑改用关联的 ObjectSet<T> 属性的 .Add 方法。 /// public void AddTosys_code_gen_config(sys_code_gen_config sys_code_gen_config) { base.AddObject("sys_code_gen_config", sys_code_gen_config); } /// /// 用于向 sys_code_modular EntitySet 添加新对象的方法,已弃用。请考虑改用关联的 ObjectSet<T> 属性的 .Add 方法。 /// public void AddTosys_code_modular(sys_code_modular sys_code_modular) { base.AddObject("sys_code_modular", sys_code_modular); } /// /// 用于向 sys_config EntitySet 添加新对象的方法,已弃用。请考虑改用关联的 ObjectSet<T> 属性的 .Add 方法。 /// public void AddTosys_config(sys_config sys_config) { base.AddObject("sys_config", sys_config); } /// /// 用于向 sys_dict_data EntitySet 添加新对象的方法,已弃用。请考虑改用关联的 ObjectSet<T> 属性的 .Add 方法。 /// public void AddTosys_dict_data(sys_dict_data sys_dict_data) { base.AddObject("sys_dict_data", sys_dict_data); } /// /// 用于向 sys_dict_type EntitySet 添加新对象的方法,已弃用。请考虑改用关联的 ObjectSet<T> 属性的 .Add 方法。 /// public void AddTosys_dict_type(sys_dict_type sys_dict_type) { base.AddObject("sys_dict_type", sys_dict_type); } /// /// 用于向 sys_emp EntitySet 添加新对象的方法,已弃用。请考虑改用关联的 ObjectSet<T> 属性的 .Add 方法。 /// public void AddTosys_emp(sys_emp sys_emp) { base.AddObject("sys_emp", sys_emp); } /// /// 用于向 sys_emp_ext_org_pos EntitySet 添加新对象的方法,已弃用。请考虑改用关联的 ObjectSet<T> 属性的 .Add 方法。 /// public void AddTosys_emp_ext_org_pos(sys_emp_ext_org_pos sys_emp_ext_org_pos) { base.AddObject("sys_emp_ext_org_pos", sys_emp_ext_org_pos); } /// /// 用于向 sys_file EntitySet 添加新对象的方法,已弃用。请考虑改用关联的 ObjectSet<T> 属性的 .Add 方法。 /// public void AddTosys_file(sys_file sys_file) { base.AddObject("sys_file", sys_file); } /// /// 用于向 sys_forms EntitySet 添加新对象的方法,已弃用。请考虑改用关联的 ObjectSet<T> 属性的 .Add 方法。 /// public void AddTosys_forms(sys_forms sys_forms) { base.AddObject("sys_forms", sys_forms); } /// /// 用于向 sys_log_audit EntitySet 添加新对象的方法,已弃用。请考虑改用关联的 ObjectSet<T> 属性的 .Add 方法。 /// public void AddTosys_log_audit(sys_log_audit sys_log_audit) { base.AddObject("sys_log_audit", sys_log_audit); } /// /// 用于向 sys_log_ex EntitySet 添加新对象的方法,已弃用。请考虑改用关联的 ObjectSet<T> 属性的 .Add 方法。 /// public void AddTosys_log_ex(sys_log_ex sys_log_ex) { base.AddObject("sys_log_ex", sys_log_ex); } /// /// 用于向 sys_log_op EntitySet 添加新对象的方法,已弃用。请考虑改用关联的 ObjectSet<T> 属性的 .Add 方法。 /// public void AddTosys_log_op(sys_log_op sys_log_op) { base.AddObject("sys_log_op", sys_log_op); } /// /// 用于向 sys_log_vis EntitySet 添加新对象的方法,已弃用。请考虑改用关联的 ObjectSet<T> 属性的 .Add 方法。 /// public void AddTosys_log_vis(sys_log_vis sys_log_vis) { base.AddObject("sys_log_vis", sys_log_vis); } /// /// 用于向 sys_low_code_module EntitySet 添加新对象的方法,已弃用。请考虑改用关联的 ObjectSet<T> 属性的 .Add 方法。 /// public void AddTosys_low_code_module(sys_low_code_module sys_low_code_module) { base.AddObject("sys_low_code_module", sys_low_code_module); } /// /// 用于向 sys_low_code_module_database EntitySet 添加新对象的方法,已弃用。请考虑改用关联的 ObjectSet<T> 属性的 .Add 方法。 /// public void AddTosys_low_code_module_database(sys_low_code_module_database sys_low_code_module_database) { base.AddObject("sys_low_code_module_database", sys_low_code_module_database); } /// /// 用于向 sys_menu EntitySet 添加新对象的方法,已弃用。请考虑改用关联的 ObjectSet<T> 属性的 .Add 方法。 /// public void AddTosys_menu(sys_menu sys_menu) { base.AddObject("sys_menu", sys_menu); } /// /// 用于向 sys_notice EntitySet 添加新对象的方法,已弃用。请考虑改用关联的 ObjectSet<T> 属性的 .Add 方法。 /// public void AddTosys_notice(sys_notice sys_notice) { base.AddObject("sys_notice", sys_notice); } /// /// 用于向 sys_notice_user EntitySet 添加新对象的方法,已弃用。请考虑改用关联的 ObjectSet<T> 属性的 .Add 方法。 /// public void AddTosys_notice_user(sys_notice_user sys_notice_user) { base.AddObject("sys_notice_user", sys_notice_user); } /// /// 用于向 sys_org EntitySet 添加新对象的方法,已弃用。请考虑改用关联的 ObjectSet<T> 属性的 .Add 方法。 /// public void AddTosys_org(sys_org sys_org) { base.AddObject("sys_org", sys_org); } /// /// 用于向 sys_pos EntitySet 添加新对象的方法,已弃用。请考虑改用关联的 ObjectSet<T> 属性的 .Add 方法。 /// public void AddTosys_pos(sys_pos sys_pos) { base.AddObject("sys_pos", sys_pos); } /// /// 用于向 sys_role EntitySet 添加新对象的方法,已弃用。请考虑改用关联的 ObjectSet<T> 属性的 .Add 方法。 /// public void AddTosys_role(sys_role sys_role) { base.AddObject("sys_role", sys_role); } /// /// 用于向 sys_timer EntitySet 添加新对象的方法,已弃用。请考虑改用关联的 ObjectSet<T> 属性的 .Add 方法。 /// public void AddTosys_timer(sys_timer sys_timer) { base.AddObject("sys_timer", sys_timer); } /// /// 用于向 sys_user EntitySet 添加新对象的方法,已弃用。请考虑改用关联的 ObjectSet<T> 属性的 .Add 方法。 /// public void AddTosys_user(sys_user sys_user) { base.AddObject("sys_user", sys_user); } /// /// 用于向 ware_container_vs_material EntitySet 添加新对象的方法,已弃用。请考虑改用关联的 ObjectSet<T> 属性的 .Add 方法。 /// public void AddToware_container_vs_material(ware_container_vs_material ware_container_vs_material) { base.AddObject("ware_container_vs_material", ware_container_vs_material); } /// /// 用于向 ware_device_wareing EntitySet 添加新对象的方法,已弃用。请考虑改用关联的 ObjectSet<T> 属性的 .Add 方法。 /// public void AddToware_device_wareing(ware_device_wareing ware_device_wareing) { base.AddObject("ware_device_wareing", ware_device_wareing); } /// /// 用于向 ware_flow_record EntitySet 添加新对象的方法,已弃用。请考虑改用关联的 ObjectSet<T> 属性的 .Add 方法。 /// public void AddToware_flow_record(ware_flow_record ware_flow_record) { base.AddObject("ware_flow_record", ware_flow_record); } /// /// 用于向 ware_location_vs_container EntitySet 添加新对象的方法,已弃用。请考虑改用关联的 ObjectSet<T> 属性的 .Add 方法。 /// public void AddToware_location_vs_container(ware_location_vs_container ware_location_vs_container) { base.AddObject("ware_location_vs_container", ware_location_vs_container); } /// /// 用于向 ware_site EntitySet 添加新对象的方法,已弃用。请考虑改用关联的 ObjectSet<T> 属性的 .Add 方法。 /// public void AddToware_site(ware_site ware_site) { base.AddObject("ware_site", ware_site); } /// /// 用于向 ware_task EntitySet 添加新对象的方法,已弃用。请考虑改用关联的 ObjectSet<T> 属性的 .Add 方法。 /// public void AddToware_task(ware_task ware_task) { base.AddObject("ware_task", ware_task); } /// /// 用于向 ware_task_bak EntitySet 添加新对象的方法,已弃用。请考虑改用关联的 ObjectSet<T> 属性的 .Add 方法。 /// public void AddToware_task_bak(ware_task_bak ware_task_bak) { base.AddObject("ware_task_bak", ware_task_bak); } /// /// 用于向 ware_task_sub EntitySet 添加新对象的方法,已弃用。请考虑改用关联的 ObjectSet<T> 属性的 .Add 方法。 /// public void AddToware_task_sub(ware_task_sub ware_task_sub) { base.AddObject("ware_task_sub", ware_task_sub); } /// /// 用于向 ware_task_sub_bak EntitySet 添加新对象的方法,已弃用。请考虑改用关联的 ObjectSet<T> 属性的 .Add 方法。 /// public void AddToware_task_sub_bak(ware_task_sub_bak ware_task_sub_bak) { base.AddObject("ware_task_sub_bak", ware_task_sub_bak); } /// /// 用于向 wms_area EntitySet 添加新对象的方法,已弃用。请考虑改用关联的 ObjectSet<T> 属性的 .Add 方法。 /// public void AddTowms_area(wms_area wms_area) { base.AddObject("wms_area", wms_area); } /// /// 用于向 wms_container EntitySet 添加新对象的方法,已弃用。请考虑改用关联的 ObjectSet<T> 属性的 .Add 方法。 /// public void AddTowms_container(wms_container wms_container) { base.AddObject("wms_container", wms_container); } /// /// 用于向 wms_container_type EntitySet 添加新对象的方法,已弃用。请考虑改用关联的 ObjectSet<T> 属性的 .Add 方法。 /// public void AddTowms_container_type(wms_container_type wms_container_type) { base.AddObject("wms_container_type", wms_container_type); } /// /// 用于向 wms_location_type EntitySet 添加新对象的方法,已弃用。请考虑改用关联的 ObjectSet<T> 属性的 .Add 方法。 /// public void AddTowms_location_type(wms_location_type wms_location_type) { base.AddObject("wms_location_type", wms_location_type); } /// /// 用于向 wms_material EntitySet 添加新对象的方法,已弃用。请考虑改用关联的 ObjectSet<T> 属性的 .Add 方法。 /// public void AddTowms_material(wms_material wms_material) { base.AddObject("wms_material", wms_material); } /// /// 用于向 wms_materialcontainer EntitySet 添加新对象的方法,已弃用。请考虑改用关联的 ObjectSet<T> 属性的 .Add 方法。 /// public void AddTowms_materialcontainer(wms_materialcontainer wms_materialcontainer) { base.AddObject("wms_materialcontainer", wms_materialcontainer); } /// /// 用于向 wms_materialstock EntitySet 添加新对象的方法,已弃用。请考虑改用关联的 ObjectSet<T> 属性的 .Add 方法。 /// public void AddTowms_materialstock(wms_materialstock wms_materialstock) { base.AddObject("wms_materialstock", wms_materialstock); } /// /// 用于向 wms_part EntitySet 添加新对象的方法,已弃用。请考虑改用关联的 ObjectSet<T> 属性的 .Add 方法。 /// public void AddTowms_part(wms_part wms_part) { base.AddObject("wms_part", wms_part); } /// /// 用于向 wms_place EntitySet 添加新对象的方法,已弃用。请考虑改用关联的 ObjectSet<T> 属性的 .Add 方法。 /// public void AddTowms_place(wms_place wms_place) { base.AddObject("wms_place", wms_place); } /// /// 用于向 wms_task EntitySet 添加新对象的方法,已弃用。请考虑改用关联的 ObjectSet<T> 属性的 .Add 方法。 /// public void AddTowms_task(wms_task wms_task) { base.AddObject("wms_task", wms_task); } /// /// 用于向 v_empty_location EntitySet 添加新对象的方法,已弃用。请考虑改用关联的 ObjectSet<T> 属性的 .Add 方法。 /// public void AddTov_empty_location(v_empty_location v_empty_location) { base.AddObject("v_empty_location", v_empty_location); } /// /// 用于向 v_ware_inventory_by_container EntitySet 添加新对象的方法,已弃用。请考虑改用关联的 ObjectSet<T> 属性的 .Add 方法。 /// public void AddTov_ware_inventory_by_container(v_ware_inventory_by_container v_ware_inventory_by_container) { base.AddObject("v_ware_inventory_by_container", v_ware_inventory_by_container); } #endregion } #endregion #region 实体 /// /// 没有元数据文档可用。 /// [EdmEntityTypeAttribute(NamespaceName="TEST", Name="Base_SysExceptionInfo")] [Serializable()] [DataContractAttribute(IsReference=true)] public partial class Base_SysExceptionInfo : EntityObject { #region 工厂方法 /// /// 创建新的 Base_SysExceptionInfo 对象。 /// /// Id 属性的初始值。 public static Base_SysExceptionInfo CreateBase_SysExceptionInfo(global::System.String id) { Base_SysExceptionInfo base_SysExceptionInfo = new Base_SysExceptionInfo(); base_SysExceptionInfo.Id = id; return base_SysExceptionInfo; } #endregion #region 基元属性 /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.String Id { get { return _Id; } set { if (_Id != value) { OnIdChanging(value); ReportPropertyChanging("Id"); _Id = StructuralObject.SetValidValue(value, false); ReportPropertyChanged("Id"); OnIdChanged(); } } } private global::System.String _Id; partial void OnIdChanging(global::System.String value); partial void OnIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String module { get { return _module; } set { OnmoduleChanging(value); ReportPropertyChanging("module"); _module = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("module"); OnmoduleChanged(); } } private global::System.String _module; partial void OnmoduleChanging(global::System.String value); partial void OnmoduleChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String exceptionLevel { get { return _exceptionLevel; } set { OnexceptionLevelChanging(value); ReportPropertyChanging("exceptionLevel"); _exceptionLevel = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("exceptionLevel"); OnexceptionLevelChanged(); } } private global::System.String _exceptionLevel; partial void OnexceptionLevelChanging(global::System.String value); partial void OnexceptionLevelChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String exceptionSource { get { return _exceptionSource; } set { OnexceptionSourceChanging(value); ReportPropertyChanging("exceptionSource"); _exceptionSource = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("exceptionSource"); OnexceptionSourceChanged(); } } private global::System.String _exceptionSource; partial void OnexceptionSourceChanging(global::System.String value); partial void OnexceptionSourceChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String exceptionFun { get { return _exceptionFun; } set { OnexceptionFunChanging(value); ReportPropertyChanging("exceptionFun"); _exceptionFun = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("exceptionFun"); OnexceptionFunChanged(); } } private global::System.String _exceptionFun; partial void OnexceptionFunChanging(global::System.String value); partial void OnexceptionFunChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String sourceData { get { return _sourceData; } set { OnsourceDataChanging(value); ReportPropertyChanging("sourceData"); _sourceData = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("sourceData"); OnsourceDataChanged(); } } private global::System.String _sourceData; partial void OnsourceDataChanging(global::System.String value); partial void OnsourceDataChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String exceptionMsg { get { return _exceptionMsg; } set { OnexceptionMsgChanging(value); ReportPropertyChanging("exceptionMsg"); _exceptionMsg = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("exceptionMsg"); OnexceptionMsgChanged(); } } private global::System.String _exceptionMsg; partial void OnexceptionMsgChanging(global::System.String value); partial void OnexceptionMsgChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String exceptionData { get { return _exceptionData; } set { OnexceptionDataChanging(value); ReportPropertyChanging("exceptionData"); _exceptionData = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("exceptionData"); OnexceptionDataChanged(); } } private global::System.String _exceptionData; partial void OnexceptionDataChanging(global::System.String value); partial void OnexceptionDataChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String host { get { return _host; } set { OnhostChanging(value); ReportPropertyChanging("host"); _host = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("host"); OnhostChanged(); } } private global::System.String _host; partial void OnhostChanging(global::System.String value); partial void OnhostChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String key1 { get { return _key1; } set { Onkey1Changing(value); ReportPropertyChanging("key1"); _key1 = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("key1"); Onkey1Changed(); } } private global::System.String _key1; partial void Onkey1Changing(global::System.String value); partial void Onkey1Changed(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String key2 { get { return _key2; } set { Onkey2Changing(value); ReportPropertyChanging("key2"); _key2 = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("key2"); Onkey2Changed(); } } private global::System.String _key2; partial void Onkey2Changing(global::System.String value); partial void Onkey2Changed(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String key3 { get { return _key3; } set { Onkey3Changing(value); ReportPropertyChanging("key3"); _key3 = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("key3"); Onkey3Changed(); } } private global::System.String _key3; partial void Onkey3Changing(global::System.String value); partial void Onkey3Changed(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String creator { get { return _creator; } set { OncreatorChanging(value); ReportPropertyChanging("creator"); _creator = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("creator"); OncreatorChanged(); } } private global::System.String _creator; partial void OncreatorChanging(global::System.String value); partial void OncreatorChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable createTime { get { return _createTime; } set { OncreateTimeChanging(value); ReportPropertyChanging("createTime"); _createTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("createTime"); OncreateTimeChanged(); } } private Nullable _createTime; partial void OncreateTimeChanging(Nullable value); partial void OncreateTimeChanged(); #endregion } /// /// 没有元数据文档可用。 /// [EdmEntityTypeAttribute(NamespaceName="TEST", Name="C__EFMigrationsHistory")] [Serializable()] [DataContractAttribute(IsReference=true)] public partial class C__EFMigrationsHistory : EntityObject { #region 工厂方法 /// /// 创建新的 C__EFMigrationsHistory 对象。 /// /// MigrationId 属性的初始值。 /// ProductVersion 属性的初始值。 public static C__EFMigrationsHistory CreateC__EFMigrationsHistory(global::System.String migrationId, global::System.String productVersion) { C__EFMigrationsHistory c__EFMigrationsHistory = new C__EFMigrationsHistory(); c__EFMigrationsHistory.MigrationId = migrationId; c__EFMigrationsHistory.ProductVersion = productVersion; return c__EFMigrationsHistory; } #endregion #region 基元属性 /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.String MigrationId { get { return _MigrationId; } set { if (_MigrationId != value) { OnMigrationIdChanging(value); ReportPropertyChanging("MigrationId"); _MigrationId = StructuralObject.SetValidValue(value, false); ReportPropertyChanged("MigrationId"); OnMigrationIdChanged(); } } } private global::System.String _MigrationId; partial void OnMigrationIdChanging(global::System.String value); partial void OnMigrationIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.String ProductVersion { get { return _ProductVersion; } set { OnProductVersionChanging(value); ReportPropertyChanging("ProductVersion"); _ProductVersion = StructuralObject.SetValidValue(value, false); ReportPropertyChanged("ProductVersion"); OnProductVersionChanged(); } } private global::System.String _ProductVersion; partial void OnProductVersionChanging(global::System.String value); partial void OnProductVersionChanged(); #endregion } /// /// 没有元数据文档可用。 /// [EdmEntityTypeAttribute(NamespaceName="TEST", Name="sys_app")] [Serializable()] [DataContractAttribute(IsReference=true)] public partial class sys_app : EntityObject { #region 工厂方法 /// /// 创建新的 sys_app 对象。 /// /// Id 属性的初始值。 /// Name 属性的初始值。 /// Code 属性的初始值。 /// Status 属性的初始值。 /// Sort 属性的初始值。 /// IsDeleted 属性的初始值。 public static sys_app Createsys_app(global::System.Int64 id, global::System.String name, global::System.String code, global::System.Int32 status, global::System.Int32 sort, global::System.Boolean isDeleted) { sys_app sys_app = new sys_app(); sys_app.Id = id; sys_app.Name = name; sys_app.Code = code; sys_app.Status = status; sys_app.Sort = sort; sys_app.IsDeleted = isDeleted; return sys_app; } #endregion #region 基元属性 /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 Id { get { return _Id; } set { if (_Id != value) { OnIdChanging(value); ReportPropertyChanging("Id"); _Id = StructuralObject.SetValidValue(value); ReportPropertyChanged("Id"); OnIdChanged(); } } } private global::System.Int64 _Id; partial void OnIdChanging(global::System.Int64 value); partial void OnIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.String Name { get { return _Name; } set { OnNameChanging(value); ReportPropertyChanging("Name"); _Name = StructuralObject.SetValidValue(value, false); ReportPropertyChanged("Name"); OnNameChanged(); } } private global::System.String _Name; partial void OnNameChanging(global::System.String value); partial void OnNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.String Code { get { return _Code; } set { OnCodeChanging(value); ReportPropertyChanging("Code"); _Code = StructuralObject.SetValidValue(value, false); ReportPropertyChanged("Code"); OnCodeChanged(); } } private global::System.String _Code; partial void OnCodeChanging(global::System.String value); partial void OnCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Active { get { return _Active; } set { OnActiveChanging(value); ReportPropertyChanging("Active"); _Active = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Active"); OnActiveChanged(); } } private global::System.String _Active; partial void OnActiveChanging(global::System.String value); partial void OnActiveChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 Status { get { return _Status; } set { OnStatusChanging(value); ReportPropertyChanging("Status"); _Status = StructuralObject.SetValidValue(value); ReportPropertyChanged("Status"); OnStatusChanged(); } } private global::System.Int32 _Status; partial void OnStatusChanging(global::System.Int32 value); partial void OnStatusChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 Sort { get { return _Sort; } set { OnSortChanging(value); ReportPropertyChanging("Sort"); _Sort = StructuralObject.SetValidValue(value); ReportPropertyChanged("Sort"); OnSortChanged(); } } private global::System.Int32 _Sort; partial void OnSortChanging(global::System.Int32 value); partial void OnSortChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedTime { get { return _CreatedTime; } set { OnCreatedTimeChanging(value); ReportPropertyChanging("CreatedTime"); _CreatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedTime"); OnCreatedTimeChanged(); } } private Nullable _CreatedTime; partial void OnCreatedTimeChanging(Nullable value); partial void OnCreatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedTime { get { return _UpdatedTime; } set { OnUpdatedTimeChanging(value); ReportPropertyChanging("UpdatedTime"); _UpdatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedTime"); OnUpdatedTimeChanged(); } } private Nullable _UpdatedTime; partial void OnUpdatedTimeChanging(Nullable value); partial void OnUpdatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedUserId { get { return _CreatedUserId; } set { OnCreatedUserIdChanging(value); ReportPropertyChanging("CreatedUserId"); _CreatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedUserId"); OnCreatedUserIdChanged(); } } private Nullable _CreatedUserId; partial void OnCreatedUserIdChanging(Nullable value); partial void OnCreatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String CreatedUserName { get { return _CreatedUserName; } set { OnCreatedUserNameChanging(value); ReportPropertyChanging("CreatedUserName"); _CreatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("CreatedUserName"); OnCreatedUserNameChanged(); } } private global::System.String _CreatedUserName; partial void OnCreatedUserNameChanging(global::System.String value); partial void OnCreatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedUserId { get { return _UpdatedUserId; } set { OnUpdatedUserIdChanging(value); ReportPropertyChanging("UpdatedUserId"); _UpdatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedUserId"); OnUpdatedUserIdChanged(); } } private Nullable _UpdatedUserId; partial void OnUpdatedUserIdChanging(Nullable value); partial void OnUpdatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String UpdatedUserName { get { return _UpdatedUserName; } set { OnUpdatedUserNameChanging(value); ReportPropertyChanging("UpdatedUserName"); _UpdatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("UpdatedUserName"); OnUpdatedUserNameChanged(); } } private global::System.String _UpdatedUserName; partial void OnUpdatedUserNameChanging(global::System.String value); partial void OnUpdatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Boolean IsDeleted { get { return _IsDeleted; } set { OnIsDeletedChanging(value); ReportPropertyChanging("IsDeleted"); _IsDeleted = StructuralObject.SetValidValue(value); ReportPropertyChanged("IsDeleted"); OnIsDeletedChanged(); } } private global::System.Boolean _IsDeleted; partial void OnIsDeletedChanging(global::System.Boolean value); partial void OnIsDeletedChanged(); #endregion } /// /// 没有元数据文档可用。 /// [EdmEntityTypeAttribute(NamespaceName="TEST", Name="sys_code_gen")] [Serializable()] [DataContractAttribute(IsReference=true)] public partial class sys_code_gen : EntityObject { #region 工厂方法 /// /// 创建新的 sys_code_gen 对象。 /// /// Id 属性的初始值。 /// MenuPid 属性的初始值。 /// IsDeleted 属性的初始值。 public static sys_code_gen Createsys_code_gen(global::System.Int64 id, global::System.Int64 menuPid, global::System.Boolean isDeleted) { sys_code_gen sys_code_gen = new sys_code_gen(); sys_code_gen.Id = id; sys_code_gen.MenuPid = menuPid; sys_code_gen.IsDeleted = isDeleted; return sys_code_gen; } #endregion #region 基元属性 /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 Id { get { return _Id; } set { if (_Id != value) { OnIdChanging(value); ReportPropertyChanging("Id"); _Id = StructuralObject.SetValidValue(value); ReportPropertyChanged("Id"); OnIdChanged(); } } } private global::System.Int64 _Id; partial void OnIdChanging(global::System.Int64 value); partial void OnIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String AuthorName { get { return _AuthorName; } set { OnAuthorNameChanging(value); ReportPropertyChanging("AuthorName"); _AuthorName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("AuthorName"); OnAuthorNameChanged(); } } private global::System.String _AuthorName; partial void OnAuthorNameChanging(global::System.String value); partial void OnAuthorNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String TablePrefix { get { return _TablePrefix; } set { OnTablePrefixChanging(value); ReportPropertyChanging("TablePrefix"); _TablePrefix = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("TablePrefix"); OnTablePrefixChanged(); } } private global::System.String _TablePrefix; partial void OnTablePrefixChanging(global::System.String value); partial void OnTablePrefixChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String GenerateType { get { return _GenerateType; } set { OnGenerateTypeChanging(value); ReportPropertyChanging("GenerateType"); _GenerateType = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("GenerateType"); OnGenerateTypeChanged(); } } private global::System.String _GenerateType; partial void OnGenerateTypeChanging(global::System.String value); partial void OnGenerateTypeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String DatabaseName { get { return _DatabaseName; } set { OnDatabaseNameChanging(value); ReportPropertyChanging("DatabaseName"); _DatabaseName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("DatabaseName"); OnDatabaseNameChanged(); } } private global::System.String _DatabaseName; partial void OnDatabaseNameChanging(global::System.String value); partial void OnDatabaseNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String TableName { get { return _TableName; } set { OnTableNameChanging(value); ReportPropertyChanging("TableName"); _TableName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("TableName"); OnTableNameChanged(); } } private global::System.String _TableName; partial void OnTableNameChanging(global::System.String value); partial void OnTableNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String NameSpace { get { return _NameSpace; } set { OnNameSpaceChanging(value); ReportPropertyChanging("NameSpace"); _NameSpace = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("NameSpace"); OnNameSpaceChanged(); } } private global::System.String _NameSpace; partial void OnNameSpaceChanging(global::System.String value); partial void OnNameSpaceChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String BusName { get { return _BusName; } set { OnBusNameChanging(value); ReportPropertyChanging("BusName"); _BusName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("BusName"); OnBusNameChanged(); } } private global::System.String _BusName; partial void OnBusNameChanging(global::System.String value); partial void OnBusNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String MenuApplication { get { return _MenuApplication; } set { OnMenuApplicationChanging(value); ReportPropertyChanging("MenuApplication"); _MenuApplication = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("MenuApplication"); OnMenuApplicationChanged(); } } private global::System.String _MenuApplication; partial void OnMenuApplicationChanging(global::System.String value); partial void OnMenuApplicationChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 MenuPid { get { return _MenuPid; } set { OnMenuPidChanging(value); ReportPropertyChanging("MenuPid"); _MenuPid = StructuralObject.SetValidValue(value); ReportPropertyChanged("MenuPid"); OnMenuPidChanged(); } } private global::System.Int64 _MenuPid; partial void OnMenuPidChanging(global::System.Int64 value); partial void OnMenuPidChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable LowCodeId { get { return _LowCodeId; } set { OnLowCodeIdChanging(value); ReportPropertyChanging("LowCodeId"); _LowCodeId = StructuralObject.SetValidValue(value); ReportPropertyChanged("LowCodeId"); OnLowCodeIdChanged(); } } private Nullable _LowCodeId; partial void OnLowCodeIdChanging(Nullable value); partial void OnLowCodeIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedTime { get { return _CreatedTime; } set { OnCreatedTimeChanging(value); ReportPropertyChanging("CreatedTime"); _CreatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedTime"); OnCreatedTimeChanged(); } } private Nullable _CreatedTime; partial void OnCreatedTimeChanging(Nullable value); partial void OnCreatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedTime { get { return _UpdatedTime; } set { OnUpdatedTimeChanging(value); ReportPropertyChanging("UpdatedTime"); _UpdatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedTime"); OnUpdatedTimeChanged(); } } private Nullable _UpdatedTime; partial void OnUpdatedTimeChanging(Nullable value); partial void OnUpdatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedUserId { get { return _CreatedUserId; } set { OnCreatedUserIdChanging(value); ReportPropertyChanging("CreatedUserId"); _CreatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedUserId"); OnCreatedUserIdChanged(); } } private Nullable _CreatedUserId; partial void OnCreatedUserIdChanging(Nullable value); partial void OnCreatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String CreatedUserName { get { return _CreatedUserName; } set { OnCreatedUserNameChanging(value); ReportPropertyChanging("CreatedUserName"); _CreatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("CreatedUserName"); OnCreatedUserNameChanged(); } } private global::System.String _CreatedUserName; partial void OnCreatedUserNameChanging(global::System.String value); partial void OnCreatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedUserId { get { return _UpdatedUserId; } set { OnUpdatedUserIdChanging(value); ReportPropertyChanging("UpdatedUserId"); _UpdatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedUserId"); OnUpdatedUserIdChanged(); } } private Nullable _UpdatedUserId; partial void OnUpdatedUserIdChanging(Nullable value); partial void OnUpdatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String UpdatedUserName { get { return _UpdatedUserName; } set { OnUpdatedUserNameChanging(value); ReportPropertyChanging("UpdatedUserName"); _UpdatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("UpdatedUserName"); OnUpdatedUserNameChanged(); } } private global::System.String _UpdatedUserName; partial void OnUpdatedUserNameChanging(global::System.String value); partial void OnUpdatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Boolean IsDeleted { get { return _IsDeleted; } set { OnIsDeletedChanging(value); ReportPropertyChanging("IsDeleted"); _IsDeleted = StructuralObject.SetValidValue(value); ReportPropertyChanged("IsDeleted"); OnIsDeletedChanged(); } } private global::System.Boolean _IsDeleted; partial void OnIsDeletedChanging(global::System.Boolean value); partial void OnIsDeletedChanged(); #endregion } /// /// 没有元数据文档可用。 /// [EdmEntityTypeAttribute(NamespaceName="TEST", Name="sys_code_gen_config")] [Serializable()] [DataContractAttribute(IsReference=true)] public partial class sys_code_gen_config : EntityObject { #region 工厂方法 /// /// 创建新的 sys_code_gen_config 对象。 /// /// Id 属性的初始值。 /// CodeGenId 属性的初始值。 /// ColumnName 属性的初始值。 /// IsDeleted 属性的初始值。 public static sys_code_gen_config Createsys_code_gen_config(global::System.Int64 id, global::System.Int64 codeGenId, global::System.String columnName, global::System.Boolean isDeleted) { sys_code_gen_config sys_code_gen_config = new sys_code_gen_config(); sys_code_gen_config.Id = id; sys_code_gen_config.CodeGenId = codeGenId; sys_code_gen_config.ColumnName = columnName; sys_code_gen_config.IsDeleted = isDeleted; return sys_code_gen_config; } #endregion #region 基元属性 /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 Id { get { return _Id; } set { if (_Id != value) { OnIdChanging(value); ReportPropertyChanging("Id"); _Id = StructuralObject.SetValidValue(value); ReportPropertyChanged("Id"); OnIdChanged(); } } } private global::System.Int64 _Id; partial void OnIdChanging(global::System.Int64 value); partial void OnIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 CodeGenId { get { return _CodeGenId; } set { OnCodeGenIdChanging(value); ReportPropertyChanging("CodeGenId"); _CodeGenId = StructuralObject.SetValidValue(value); ReportPropertyChanged("CodeGenId"); OnCodeGenIdChanged(); } } private global::System.Int64 _CodeGenId; partial void OnCodeGenIdChanging(global::System.Int64 value); partial void OnCodeGenIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.String ColumnName { get { return _ColumnName; } set { OnColumnNameChanging(value); ReportPropertyChanging("ColumnName"); _ColumnName = StructuralObject.SetValidValue(value, false); ReportPropertyChanged("ColumnName"); OnColumnNameChanged(); } } private global::System.String _ColumnName; partial void OnColumnNameChanging(global::System.String value); partial void OnColumnNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String ColumnComment { get { return _ColumnComment; } set { OnColumnCommentChanging(value); ReportPropertyChanging("ColumnComment"); _ColumnComment = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("ColumnComment"); OnColumnCommentChanged(); } } private global::System.String _ColumnComment; partial void OnColumnCommentChanging(global::System.String value); partial void OnColumnCommentChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String NetType { get { return _NetType; } set { OnNetTypeChanging(value); ReportPropertyChanging("NetType"); _NetType = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("NetType"); OnNetTypeChanged(); } } private global::System.String _NetType; partial void OnNetTypeChanging(global::System.String value); partial void OnNetTypeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String DtoNetType { get { return _DtoNetType; } set { OnDtoNetTypeChanging(value); ReportPropertyChanging("DtoNetType"); _DtoNetType = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("DtoNetType"); OnDtoNetTypeChanged(); } } private global::System.String _DtoNetType; partial void OnDtoNetTypeChanging(global::System.String value); partial void OnDtoNetTypeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String EffectType { get { return _EffectType; } set { OnEffectTypeChanging(value); ReportPropertyChanging("EffectType"); _EffectType = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("EffectType"); OnEffectTypeChanged(); } } private global::System.String _EffectType; partial void OnEffectTypeChanging(global::System.String value); partial void OnEffectTypeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String FkEntityName { get { return _FkEntityName; } set { OnFkEntityNameChanging(value); ReportPropertyChanging("FkEntityName"); _FkEntityName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("FkEntityName"); OnFkEntityNameChanged(); } } private global::System.String _FkEntityName; partial void OnFkEntityNameChanging(global::System.String value); partial void OnFkEntityNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String FkColumnName { get { return _FkColumnName; } set { OnFkColumnNameChanging(value); ReportPropertyChanging("FkColumnName"); _FkColumnName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("FkColumnName"); OnFkColumnNameChanged(); } } private global::System.String _FkColumnName; partial void OnFkColumnNameChanging(global::System.String value); partial void OnFkColumnNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String FkColumnNetType { get { return _FkColumnNetType; } set { OnFkColumnNetTypeChanging(value); ReportPropertyChanging("FkColumnNetType"); _FkColumnNetType = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("FkColumnNetType"); OnFkColumnNetTypeChanged(); } } private global::System.String _FkColumnNetType; partial void OnFkColumnNetTypeChanging(global::System.String value); partial void OnFkColumnNetTypeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String DictTypeCode { get { return _DictTypeCode; } set { OnDictTypeCodeChanging(value); ReportPropertyChanging("DictTypeCode"); _DictTypeCode = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("DictTypeCode"); OnDictTypeCodeChanged(); } } private global::System.String _DictTypeCode; partial void OnDictTypeCodeChanging(global::System.String value); partial void OnDictTypeCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String WhetherRetract { get { return _WhetherRetract; } set { OnWhetherRetractChanging(value); ReportPropertyChanging("WhetherRetract"); _WhetherRetract = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("WhetherRetract"); OnWhetherRetractChanged(); } } private global::System.String _WhetherRetract; partial void OnWhetherRetractChanging(global::System.String value); partial void OnWhetherRetractChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String WhetherRequired { get { return _WhetherRequired; } set { OnWhetherRequiredChanging(value); ReportPropertyChanging("WhetherRequired"); _WhetherRequired = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("WhetherRequired"); OnWhetherRequiredChanged(); } } private global::System.String _WhetherRequired; partial void OnWhetherRequiredChanging(global::System.String value); partial void OnWhetherRequiredChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String QueryWhether { get { return _QueryWhether; } set { OnQueryWhetherChanging(value); ReportPropertyChanging("QueryWhether"); _QueryWhether = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("QueryWhether"); OnQueryWhetherChanged(); } } private global::System.String _QueryWhether; partial void OnQueryWhetherChanging(global::System.String value); partial void OnQueryWhetherChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String QueryType { get { return _QueryType; } set { OnQueryTypeChanging(value); ReportPropertyChanging("QueryType"); _QueryType = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("QueryType"); OnQueryTypeChanged(); } } private global::System.String _QueryType; partial void OnQueryTypeChanging(global::System.String value); partial void OnQueryTypeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String WhetherTable { get { return _WhetherTable; } set { OnWhetherTableChanging(value); ReportPropertyChanging("WhetherTable"); _WhetherTable = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("WhetherTable"); OnWhetherTableChanged(); } } private global::System.String _WhetherTable; partial void OnWhetherTableChanging(global::System.String value); partial void OnWhetherTableChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String WhetherOrderBy { get { return _WhetherOrderBy; } set { OnWhetherOrderByChanging(value); ReportPropertyChanging("WhetherOrderBy"); _WhetherOrderBy = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("WhetherOrderBy"); OnWhetherOrderByChanged(); } } private global::System.String _WhetherOrderBy; partial void OnWhetherOrderByChanging(global::System.String value); partial void OnWhetherOrderByChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String WhetherAddUpdate { get { return _WhetherAddUpdate; } set { OnWhetherAddUpdateChanging(value); ReportPropertyChanging("WhetherAddUpdate"); _WhetherAddUpdate = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("WhetherAddUpdate"); OnWhetherAddUpdateChanged(); } } private global::System.String _WhetherAddUpdate; partial void OnWhetherAddUpdateChanging(global::System.String value); partial void OnWhetherAddUpdateChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String ColumnKey { get { return _ColumnKey; } set { OnColumnKeyChanging(value); ReportPropertyChanging("ColumnKey"); _ColumnKey = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("ColumnKey"); OnColumnKeyChanged(); } } private global::System.String _ColumnKey; partial void OnColumnKeyChanging(global::System.String value); partial void OnColumnKeyChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String DataType { get { return _DataType; } set { OnDataTypeChanging(value); ReportPropertyChanging("DataType"); _DataType = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("DataType"); OnDataTypeChanged(); } } private global::System.String _DataType; partial void OnDataTypeChanging(global::System.String value); partial void OnDataTypeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String WhetherCommon { get { return _WhetherCommon; } set { OnWhetherCommonChanging(value); ReportPropertyChanging("WhetherCommon"); _WhetherCommon = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("WhetherCommon"); OnWhetherCommonChanged(); } } private global::System.String _WhetherCommon; partial void OnWhetherCommonChanging(global::System.String value); partial void OnWhetherCommonChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedTime { get { return _CreatedTime; } set { OnCreatedTimeChanging(value); ReportPropertyChanging("CreatedTime"); _CreatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedTime"); OnCreatedTimeChanged(); } } private Nullable _CreatedTime; partial void OnCreatedTimeChanging(Nullable value); partial void OnCreatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedTime { get { return _UpdatedTime; } set { OnUpdatedTimeChanging(value); ReportPropertyChanging("UpdatedTime"); _UpdatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedTime"); OnUpdatedTimeChanged(); } } private Nullable _UpdatedTime; partial void OnUpdatedTimeChanging(Nullable value); partial void OnUpdatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedUserId { get { return _CreatedUserId; } set { OnCreatedUserIdChanging(value); ReportPropertyChanging("CreatedUserId"); _CreatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedUserId"); OnCreatedUserIdChanged(); } } private Nullable _CreatedUserId; partial void OnCreatedUserIdChanging(Nullable value); partial void OnCreatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String CreatedUserName { get { return _CreatedUserName; } set { OnCreatedUserNameChanging(value); ReportPropertyChanging("CreatedUserName"); _CreatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("CreatedUserName"); OnCreatedUserNameChanged(); } } private global::System.String _CreatedUserName; partial void OnCreatedUserNameChanging(global::System.String value); partial void OnCreatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedUserId { get { return _UpdatedUserId; } set { OnUpdatedUserIdChanging(value); ReportPropertyChanging("UpdatedUserId"); _UpdatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedUserId"); OnUpdatedUserIdChanged(); } } private Nullable _UpdatedUserId; partial void OnUpdatedUserIdChanging(Nullable value); partial void OnUpdatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String UpdatedUserName { get { return _UpdatedUserName; } set { OnUpdatedUserNameChanging(value); ReportPropertyChanging("UpdatedUserName"); _UpdatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("UpdatedUserName"); OnUpdatedUserNameChanged(); } } private global::System.String _UpdatedUserName; partial void OnUpdatedUserNameChanging(global::System.String value); partial void OnUpdatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Boolean IsDeleted { get { return _IsDeleted; } set { OnIsDeletedChanging(value); ReportPropertyChanging("IsDeleted"); _IsDeleted = StructuralObject.SetValidValue(value); ReportPropertyChanged("IsDeleted"); OnIsDeletedChanged(); } } private global::System.Boolean _IsDeleted; partial void OnIsDeletedChanging(global::System.Boolean value); partial void OnIsDeletedChanged(); #endregion } /// /// 没有元数据文档可用。 /// [EdmEntityTypeAttribute(NamespaceName="TEST", Name="sys_code_modular")] [Serializable()] [DataContractAttribute(IsReference=true)] public partial class sys_code_modular : EntityObject { #region 工厂方法 /// /// 创建新的 sys_code_modular 对象。 /// /// Id 属性的初始值。 /// MenuPid 属性的初始值。 /// IsDeleted 属性的初始值。 public static sys_code_modular Createsys_code_modular(global::System.Int64 id, global::System.Int64 menuPid, global::System.Boolean isDeleted) { sys_code_modular sys_code_modular = new sys_code_modular(); sys_code_modular.Id = id; sys_code_modular.MenuPid = menuPid; sys_code_modular.IsDeleted = isDeleted; return sys_code_modular; } #endregion #region 基元属性 /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 Id { get { return _Id; } set { if (_Id != value) { OnIdChanging(value); ReportPropertyChanging("Id"); _Id = StructuralObject.SetValidValue(value); ReportPropertyChanged("Id"); OnIdChanged(); } } } private global::System.Int64 _Id; partial void OnIdChanging(global::System.Int64 value); partial void OnIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String AuthorName { get { return _AuthorName; } set { OnAuthorNameChanging(value); ReportPropertyChanging("AuthorName"); _AuthorName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("AuthorName"); OnAuthorNameChanged(); } } private global::System.String _AuthorName; partial void OnAuthorNameChanging(global::System.String value); partial void OnAuthorNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String DatabaseName { get { return _DatabaseName; } set { OnDatabaseNameChanging(value); ReportPropertyChanging("DatabaseName"); _DatabaseName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("DatabaseName"); OnDatabaseNameChanged(); } } private global::System.String _DatabaseName; partial void OnDatabaseNameChanging(global::System.String value); partial void OnDatabaseNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String NameSpace { get { return _NameSpace; } set { OnNameSpaceChanging(value); ReportPropertyChanging("NameSpace"); _NameSpace = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("NameSpace"); OnNameSpaceChanged(); } } private global::System.String _NameSpace; partial void OnNameSpaceChanging(global::System.String value); partial void OnNameSpaceChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String BusName { get { return _BusName; } set { OnBusNameChanging(value); ReportPropertyChanging("BusName"); _BusName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("BusName"); OnBusNameChanged(); } } private global::System.String _BusName; partial void OnBusNameChanging(global::System.String value); partial void OnBusNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String MenuApplication { get { return _MenuApplication; } set { OnMenuApplicationChanging(value); ReportPropertyChanging("MenuApplication"); _MenuApplication = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("MenuApplication"); OnMenuApplicationChanged(); } } private global::System.String _MenuApplication; partial void OnMenuApplicationChanging(global::System.String value); partial void OnMenuApplicationChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 MenuPid { get { return _MenuPid; } set { OnMenuPidChanging(value); ReportPropertyChanging("MenuPid"); _MenuPid = StructuralObject.SetValidValue(value); ReportPropertyChanged("MenuPid"); OnMenuPidChanged(); } } private global::System.Int64 _MenuPid; partial void OnMenuPidChanging(global::System.Int64 value); partial void OnMenuPidChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String FormDesignJson { get { return _FormDesignJson; } set { OnFormDesignJsonChanging(value); ReportPropertyChanging("FormDesignJson"); _FormDesignJson = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("FormDesignJson"); OnFormDesignJsonChanged(); } } private global::System.String _FormDesignJson; partial void OnFormDesignJsonChanging(global::System.String value); partial void OnFormDesignJsonChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedTime { get { return _CreatedTime; } set { OnCreatedTimeChanging(value); ReportPropertyChanging("CreatedTime"); _CreatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedTime"); OnCreatedTimeChanged(); } } private Nullable _CreatedTime; partial void OnCreatedTimeChanging(Nullable value); partial void OnCreatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedTime { get { return _UpdatedTime; } set { OnUpdatedTimeChanging(value); ReportPropertyChanging("UpdatedTime"); _UpdatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedTime"); OnUpdatedTimeChanged(); } } private Nullable _UpdatedTime; partial void OnUpdatedTimeChanging(Nullable value); partial void OnUpdatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedUserId { get { return _CreatedUserId; } set { OnCreatedUserIdChanging(value); ReportPropertyChanging("CreatedUserId"); _CreatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedUserId"); OnCreatedUserIdChanged(); } } private Nullable _CreatedUserId; partial void OnCreatedUserIdChanging(Nullable value); partial void OnCreatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String CreatedUserName { get { return _CreatedUserName; } set { OnCreatedUserNameChanging(value); ReportPropertyChanging("CreatedUserName"); _CreatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("CreatedUserName"); OnCreatedUserNameChanged(); } } private global::System.String _CreatedUserName; partial void OnCreatedUserNameChanging(global::System.String value); partial void OnCreatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedUserId { get { return _UpdatedUserId; } set { OnUpdatedUserIdChanging(value); ReportPropertyChanging("UpdatedUserId"); _UpdatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedUserId"); OnUpdatedUserIdChanged(); } } private Nullable _UpdatedUserId; partial void OnUpdatedUserIdChanging(Nullable value); partial void OnUpdatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String UpdatedUserName { get { return _UpdatedUserName; } set { OnUpdatedUserNameChanging(value); ReportPropertyChanging("UpdatedUserName"); _UpdatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("UpdatedUserName"); OnUpdatedUserNameChanged(); } } private global::System.String _UpdatedUserName; partial void OnUpdatedUserNameChanging(global::System.String value); partial void OnUpdatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Boolean IsDeleted { get { return _IsDeleted; } set { OnIsDeletedChanging(value); ReportPropertyChanging("IsDeleted"); _IsDeleted = StructuralObject.SetValidValue(value); ReportPropertyChanged("IsDeleted"); OnIsDeletedChanged(); } } private global::System.Boolean _IsDeleted; partial void OnIsDeletedChanging(global::System.Boolean value); partial void OnIsDeletedChanged(); #endregion } /// /// 没有元数据文档可用。 /// [EdmEntityTypeAttribute(NamespaceName="TEST", Name="sys_config")] [Serializable()] [DataContractAttribute(IsReference=true)] public partial class sys_config : EntityObject { #region 工厂方法 /// /// 创建新的 sys_config 对象。 /// /// Id 属性的初始值。 /// Name 属性的初始值。 /// Code 属性的初始值。 /// Status 属性的初始值。 /// IsDeleted 属性的初始值。 public static sys_config Createsys_config(global::System.Int64 id, global::System.String name, global::System.String code, global::System.Int32 status, global::System.Boolean isDeleted) { sys_config sys_config = new sys_config(); sys_config.Id = id; sys_config.Name = name; sys_config.Code = code; sys_config.Status = status; sys_config.IsDeleted = isDeleted; return sys_config; } #endregion #region 基元属性 /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 Id { get { return _Id; } set { if (_Id != value) { OnIdChanging(value); ReportPropertyChanging("Id"); _Id = StructuralObject.SetValidValue(value); ReportPropertyChanged("Id"); OnIdChanged(); } } } private global::System.Int64 _Id; partial void OnIdChanging(global::System.Int64 value); partial void OnIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.String Name { get { return _Name; } set { OnNameChanging(value); ReportPropertyChanging("Name"); _Name = StructuralObject.SetValidValue(value, false); ReportPropertyChanged("Name"); OnNameChanged(); } } private global::System.String _Name; partial void OnNameChanging(global::System.String value); partial void OnNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.String Code { get { return _Code; } set { OnCodeChanging(value); ReportPropertyChanging("Code"); _Code = StructuralObject.SetValidValue(value, false); ReportPropertyChanged("Code"); OnCodeChanged(); } } private global::System.String _Code; partial void OnCodeChanging(global::System.String value); partial void OnCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Value { get { return _Value; } set { OnValueChanging(value); ReportPropertyChanging("Value"); _Value = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Value"); OnValueChanged(); } } private global::System.String _Value; partial void OnValueChanging(global::System.String value); partial void OnValueChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String SysFlag { get { return _SysFlag; } set { OnSysFlagChanging(value); ReportPropertyChanging("SysFlag"); _SysFlag = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("SysFlag"); OnSysFlagChanged(); } } private global::System.String _SysFlag; partial void OnSysFlagChanging(global::System.String value); partial void OnSysFlagChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Remark { get { return _Remark; } set { OnRemarkChanging(value); ReportPropertyChanging("Remark"); _Remark = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Remark"); OnRemarkChanged(); } } private global::System.String _Remark; partial void OnRemarkChanging(global::System.String value); partial void OnRemarkChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 Status { get { return _Status; } set { OnStatusChanging(value); ReportPropertyChanging("Status"); _Status = StructuralObject.SetValidValue(value); ReportPropertyChanged("Status"); OnStatusChanged(); } } private global::System.Int32 _Status; partial void OnStatusChanging(global::System.Int32 value); partial void OnStatusChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String GroupCode { get { return _GroupCode; } set { OnGroupCodeChanging(value); ReportPropertyChanging("GroupCode"); _GroupCode = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("GroupCode"); OnGroupCodeChanged(); } } private global::System.String _GroupCode; partial void OnGroupCodeChanging(global::System.String value); partial void OnGroupCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedTime { get { return _CreatedTime; } set { OnCreatedTimeChanging(value); ReportPropertyChanging("CreatedTime"); _CreatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedTime"); OnCreatedTimeChanged(); } } private Nullable _CreatedTime; partial void OnCreatedTimeChanging(Nullable value); partial void OnCreatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedTime { get { return _UpdatedTime; } set { OnUpdatedTimeChanging(value); ReportPropertyChanging("UpdatedTime"); _UpdatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedTime"); OnUpdatedTimeChanged(); } } private Nullable _UpdatedTime; partial void OnUpdatedTimeChanging(Nullable value); partial void OnUpdatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedUserId { get { return _CreatedUserId; } set { OnCreatedUserIdChanging(value); ReportPropertyChanging("CreatedUserId"); _CreatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedUserId"); OnCreatedUserIdChanged(); } } private Nullable _CreatedUserId; partial void OnCreatedUserIdChanging(Nullable value); partial void OnCreatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String CreatedUserName { get { return _CreatedUserName; } set { OnCreatedUserNameChanging(value); ReportPropertyChanging("CreatedUserName"); _CreatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("CreatedUserName"); OnCreatedUserNameChanged(); } } private global::System.String _CreatedUserName; partial void OnCreatedUserNameChanging(global::System.String value); partial void OnCreatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedUserId { get { return _UpdatedUserId; } set { OnUpdatedUserIdChanging(value); ReportPropertyChanging("UpdatedUserId"); _UpdatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedUserId"); OnUpdatedUserIdChanged(); } } private Nullable _UpdatedUserId; partial void OnUpdatedUserIdChanging(Nullable value); partial void OnUpdatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String UpdatedUserName { get { return _UpdatedUserName; } set { OnUpdatedUserNameChanging(value); ReportPropertyChanging("UpdatedUserName"); _UpdatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("UpdatedUserName"); OnUpdatedUserNameChanged(); } } private global::System.String _UpdatedUserName; partial void OnUpdatedUserNameChanging(global::System.String value); partial void OnUpdatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Boolean IsDeleted { get { return _IsDeleted; } set { OnIsDeletedChanging(value); ReportPropertyChanging("IsDeleted"); _IsDeleted = StructuralObject.SetValidValue(value); ReportPropertyChanged("IsDeleted"); OnIsDeletedChanged(); } } private global::System.Boolean _IsDeleted; partial void OnIsDeletedChanging(global::System.Boolean value); partial void OnIsDeletedChanged(); #endregion } /// /// 没有元数据文档可用。 /// [EdmEntityTypeAttribute(NamespaceName="TEST", Name="sys_dict_data")] [Serializable()] [DataContractAttribute(IsReference=true)] public partial class sys_dict_data : EntityObject { #region 工厂方法 /// /// 创建新的 sys_dict_data 对象。 /// /// Id 属性的初始值。 /// TypeId 属性的初始值。 /// Sort 属性的初始值。 /// Status 属性的初始值。 /// IsDeleted 属性的初始值。 public static sys_dict_data Createsys_dict_data(global::System.Int64 id, global::System.Int64 typeId, global::System.Int32 sort, global::System.Int32 status, global::System.Boolean isDeleted) { sys_dict_data sys_dict_data = new sys_dict_data(); sys_dict_data.Id = id; sys_dict_data.TypeId = typeId; sys_dict_data.Sort = sort; sys_dict_data.Status = status; sys_dict_data.IsDeleted = isDeleted; return sys_dict_data; } #endregion #region 基元属性 /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 Id { get { return _Id; } set { if (_Id != value) { OnIdChanging(value); ReportPropertyChanging("Id"); _Id = StructuralObject.SetValidValue(value); ReportPropertyChanged("Id"); OnIdChanged(); } } } private global::System.Int64 _Id; partial void OnIdChanging(global::System.Int64 value); partial void OnIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 TypeId { get { return _TypeId; } set { OnTypeIdChanging(value); ReportPropertyChanging("TypeId"); _TypeId = StructuralObject.SetValidValue(value); ReportPropertyChanged("TypeId"); OnTypeIdChanged(); } } private global::System.Int64 _TypeId; partial void OnTypeIdChanging(global::System.Int64 value); partial void OnTypeIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Value { get { return _Value; } set { OnValueChanging(value); ReportPropertyChanging("Value"); _Value = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Value"); OnValueChanged(); } } private global::System.String _Value; partial void OnValueChanging(global::System.String value); partial void OnValueChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Code { get { return _Code; } set { OnCodeChanging(value); ReportPropertyChanging("Code"); _Code = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Code"); OnCodeChanged(); } } private global::System.String _Code; partial void OnCodeChanging(global::System.String value); partial void OnCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 Sort { get { return _Sort; } set { OnSortChanging(value); ReportPropertyChanging("Sort"); _Sort = StructuralObject.SetValidValue(value); ReportPropertyChanged("Sort"); OnSortChanged(); } } private global::System.Int32 _Sort; partial void OnSortChanging(global::System.Int32 value); partial void OnSortChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Remark { get { return _Remark; } set { OnRemarkChanging(value); ReportPropertyChanging("Remark"); _Remark = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Remark"); OnRemarkChanged(); } } private global::System.String _Remark; partial void OnRemarkChanging(global::System.String value); partial void OnRemarkChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 Status { get { return _Status; } set { OnStatusChanging(value); ReportPropertyChanging("Status"); _Status = StructuralObject.SetValidValue(value); ReportPropertyChanged("Status"); OnStatusChanged(); } } private global::System.Int32 _Status; partial void OnStatusChanging(global::System.Int32 value); partial void OnStatusChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedTime { get { return _CreatedTime; } set { OnCreatedTimeChanging(value); ReportPropertyChanging("CreatedTime"); _CreatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedTime"); OnCreatedTimeChanged(); } } private Nullable _CreatedTime; partial void OnCreatedTimeChanging(Nullable value); partial void OnCreatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedTime { get { return _UpdatedTime; } set { OnUpdatedTimeChanging(value); ReportPropertyChanging("UpdatedTime"); _UpdatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedTime"); OnUpdatedTimeChanged(); } } private Nullable _UpdatedTime; partial void OnUpdatedTimeChanging(Nullable value); partial void OnUpdatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedUserId { get { return _CreatedUserId; } set { OnCreatedUserIdChanging(value); ReportPropertyChanging("CreatedUserId"); _CreatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedUserId"); OnCreatedUserIdChanged(); } } private Nullable _CreatedUserId; partial void OnCreatedUserIdChanging(Nullable value); partial void OnCreatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String CreatedUserName { get { return _CreatedUserName; } set { OnCreatedUserNameChanging(value); ReportPropertyChanging("CreatedUserName"); _CreatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("CreatedUserName"); OnCreatedUserNameChanged(); } } private global::System.String _CreatedUserName; partial void OnCreatedUserNameChanging(global::System.String value); partial void OnCreatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedUserId { get { return _UpdatedUserId; } set { OnUpdatedUserIdChanging(value); ReportPropertyChanging("UpdatedUserId"); _UpdatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedUserId"); OnUpdatedUserIdChanged(); } } private Nullable _UpdatedUserId; partial void OnUpdatedUserIdChanging(Nullable value); partial void OnUpdatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String UpdatedUserName { get { return _UpdatedUserName; } set { OnUpdatedUserNameChanging(value); ReportPropertyChanging("UpdatedUserName"); _UpdatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("UpdatedUserName"); OnUpdatedUserNameChanged(); } } private global::System.String _UpdatedUserName; partial void OnUpdatedUserNameChanging(global::System.String value); partial void OnUpdatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Boolean IsDeleted { get { return _IsDeleted; } set { OnIsDeletedChanging(value); ReportPropertyChanging("IsDeleted"); _IsDeleted = StructuralObject.SetValidValue(value); ReportPropertyChanged("IsDeleted"); OnIsDeletedChanged(); } } private global::System.Boolean _IsDeleted; partial void OnIsDeletedChanging(global::System.Boolean value); partial void OnIsDeletedChanged(); #endregion #region 导航属性 /// /// 没有元数据文档可用。 /// [XmlIgnoreAttribute()] [SoapIgnoreAttribute()] [DataMemberAttribute()] [EdmRelationshipNavigationPropertyAttribute("TEST", "FK_sys_dict_data_sys_dict_type_TypeId", "sys_dict_type")] public sys_dict_type sys_dict_type { get { return ((IEntityWithRelationships)this).RelationshipManager.GetRelatedReference("TEST.FK_sys_dict_data_sys_dict_type_TypeId", "sys_dict_type").Value; } set { ((IEntityWithRelationships)this).RelationshipManager.GetRelatedReference("TEST.FK_sys_dict_data_sys_dict_type_TypeId", "sys_dict_type").Value = value; } } /// /// 没有元数据文档可用。 /// [BrowsableAttribute(false)] [DataMemberAttribute()] public EntityReference sys_dict_typeReference { get { return ((IEntityWithRelationships)this).RelationshipManager.GetRelatedReference("TEST.FK_sys_dict_data_sys_dict_type_TypeId", "sys_dict_type"); } set { if ((value != null)) { ((IEntityWithRelationships)this).RelationshipManager.InitializeRelatedReference("TEST.FK_sys_dict_data_sys_dict_type_TypeId", "sys_dict_type", value); } } } #endregion } /// /// 没有元数据文档可用。 /// [EdmEntityTypeAttribute(NamespaceName="TEST", Name="sys_dict_type")] [Serializable()] [DataContractAttribute(IsReference=true)] public partial class sys_dict_type : EntityObject { #region 工厂方法 /// /// 创建新的 sys_dict_type 对象。 /// /// Id 属性的初始值。 /// Name 属性的初始值。 /// Code 属性的初始值。 /// Sort 属性的初始值。 /// Status 属性的初始值。 /// IsDeleted 属性的初始值。 public static sys_dict_type Createsys_dict_type(global::System.Int64 id, global::System.String name, global::System.String code, global::System.Int32 sort, global::System.Int32 status, global::System.Boolean isDeleted) { sys_dict_type sys_dict_type = new sys_dict_type(); sys_dict_type.Id = id; sys_dict_type.Name = name; sys_dict_type.Code = code; sys_dict_type.Sort = sort; sys_dict_type.Status = status; sys_dict_type.IsDeleted = isDeleted; return sys_dict_type; } #endregion #region 基元属性 /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 Id { get { return _Id; } set { if (_Id != value) { OnIdChanging(value); ReportPropertyChanging("Id"); _Id = StructuralObject.SetValidValue(value); ReportPropertyChanged("Id"); OnIdChanged(); } } } private global::System.Int64 _Id; partial void OnIdChanging(global::System.Int64 value); partial void OnIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.String Name { get { return _Name; } set { OnNameChanging(value); ReportPropertyChanging("Name"); _Name = StructuralObject.SetValidValue(value, false); ReportPropertyChanged("Name"); OnNameChanged(); } } private global::System.String _Name; partial void OnNameChanging(global::System.String value); partial void OnNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.String Code { get { return _Code; } set { OnCodeChanging(value); ReportPropertyChanging("Code"); _Code = StructuralObject.SetValidValue(value, false); ReportPropertyChanged("Code"); OnCodeChanged(); } } private global::System.String _Code; partial void OnCodeChanging(global::System.String value); partial void OnCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 Sort { get { return _Sort; } set { OnSortChanging(value); ReportPropertyChanging("Sort"); _Sort = StructuralObject.SetValidValue(value); ReportPropertyChanged("Sort"); OnSortChanged(); } } private global::System.Int32 _Sort; partial void OnSortChanging(global::System.Int32 value); partial void OnSortChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Remark { get { return _Remark; } set { OnRemarkChanging(value); ReportPropertyChanging("Remark"); _Remark = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Remark"); OnRemarkChanged(); } } private global::System.String _Remark; partial void OnRemarkChanging(global::System.String value); partial void OnRemarkChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 Status { get { return _Status; } set { OnStatusChanging(value); ReportPropertyChanging("Status"); _Status = StructuralObject.SetValidValue(value); ReportPropertyChanged("Status"); OnStatusChanged(); } } private global::System.Int32 _Status; partial void OnStatusChanging(global::System.Int32 value); partial void OnStatusChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedTime { get { return _CreatedTime; } set { OnCreatedTimeChanging(value); ReportPropertyChanging("CreatedTime"); _CreatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedTime"); OnCreatedTimeChanged(); } } private Nullable _CreatedTime; partial void OnCreatedTimeChanging(Nullable value); partial void OnCreatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedTime { get { return _UpdatedTime; } set { OnUpdatedTimeChanging(value); ReportPropertyChanging("UpdatedTime"); _UpdatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedTime"); OnUpdatedTimeChanged(); } } private Nullable _UpdatedTime; partial void OnUpdatedTimeChanging(Nullable value); partial void OnUpdatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedUserId { get { return _CreatedUserId; } set { OnCreatedUserIdChanging(value); ReportPropertyChanging("CreatedUserId"); _CreatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedUserId"); OnCreatedUserIdChanged(); } } private Nullable _CreatedUserId; partial void OnCreatedUserIdChanging(Nullable value); partial void OnCreatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String CreatedUserName { get { return _CreatedUserName; } set { OnCreatedUserNameChanging(value); ReportPropertyChanging("CreatedUserName"); _CreatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("CreatedUserName"); OnCreatedUserNameChanged(); } } private global::System.String _CreatedUserName; partial void OnCreatedUserNameChanging(global::System.String value); partial void OnCreatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedUserId { get { return _UpdatedUserId; } set { OnUpdatedUserIdChanging(value); ReportPropertyChanging("UpdatedUserId"); _UpdatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedUserId"); OnUpdatedUserIdChanged(); } } private Nullable _UpdatedUserId; partial void OnUpdatedUserIdChanging(Nullable value); partial void OnUpdatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String UpdatedUserName { get { return _UpdatedUserName; } set { OnUpdatedUserNameChanging(value); ReportPropertyChanging("UpdatedUserName"); _UpdatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("UpdatedUserName"); OnUpdatedUserNameChanged(); } } private global::System.String _UpdatedUserName; partial void OnUpdatedUserNameChanging(global::System.String value); partial void OnUpdatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Boolean IsDeleted { get { return _IsDeleted; } set { OnIsDeletedChanging(value); ReportPropertyChanging("IsDeleted"); _IsDeleted = StructuralObject.SetValidValue(value); ReportPropertyChanged("IsDeleted"); OnIsDeletedChanged(); } } private global::System.Boolean _IsDeleted; partial void OnIsDeletedChanging(global::System.Boolean value); partial void OnIsDeletedChanged(); #endregion #region 导航属性 /// /// 没有元数据文档可用。 /// [XmlIgnoreAttribute()] [SoapIgnoreAttribute()] [DataMemberAttribute()] [EdmRelationshipNavigationPropertyAttribute("TEST", "FK_sys_dict_data_sys_dict_type_TypeId", "sys_dict_data")] public EntityCollection sys_dict_data { get { return ((IEntityWithRelationships)this).RelationshipManager.GetRelatedCollection("TEST.FK_sys_dict_data_sys_dict_type_TypeId", "sys_dict_data"); } set { if ((value != null)) { ((IEntityWithRelationships)this).RelationshipManager.InitializeRelatedCollection("TEST.FK_sys_dict_data_sys_dict_type_TypeId", "sys_dict_data", value); } } } #endregion } /// /// 没有元数据文档可用。 /// [EdmEntityTypeAttribute(NamespaceName="TEST", Name="sys_emp")] [Serializable()] [DataContractAttribute(IsReference=true)] public partial class sys_emp : EntityObject { #region 工厂方法 /// /// 创建新的 sys_emp 对象。 /// /// Id 属性的初始值。 /// OrgId 属性的初始值。 public static sys_emp Createsys_emp(global::System.Int64 id, global::System.Int64 orgId) { sys_emp sys_emp = new sys_emp(); sys_emp.Id = id; sys_emp.OrgId = orgId; return sys_emp; } #endregion #region 基元属性 /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 Id { get { return _Id; } set { if (_Id != value) { OnIdChanging(value); ReportPropertyChanging("Id"); _Id = StructuralObject.SetValidValue(value); ReportPropertyChanged("Id"); OnIdChanged(); } } } private global::System.Int64 _Id; partial void OnIdChanging(global::System.Int64 value); partial void OnIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String JobNum { get { return _JobNum; } set { OnJobNumChanging(value); ReportPropertyChanging("JobNum"); _JobNum = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("JobNum"); OnJobNumChanged(); } } private global::System.String _JobNum; partial void OnJobNumChanging(global::System.String value); partial void OnJobNumChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 OrgId { get { return _OrgId; } set { OnOrgIdChanging(value); ReportPropertyChanging("OrgId"); _OrgId = StructuralObject.SetValidValue(value); ReportPropertyChanged("OrgId"); OnOrgIdChanged(); } } private global::System.Int64 _OrgId; partial void OnOrgIdChanging(global::System.Int64 value); partial void OnOrgIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String OrgName { get { return _OrgName; } set { OnOrgNameChanging(value); ReportPropertyChanging("OrgName"); _OrgName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("OrgName"); OnOrgNameChanged(); } } private global::System.String _OrgName; partial void OnOrgNameChanging(global::System.String value); partial void OnOrgNameChanged(); #endregion #region 导航属性 /// /// 没有元数据文档可用。 /// [XmlIgnoreAttribute()] [SoapIgnoreAttribute()] [DataMemberAttribute()] [EdmRelationshipNavigationPropertyAttribute("TEST", "FK_sys_emp_ext_org_pos_sys_emp_SysEmpId", "sys_emp_ext_org_pos")] public EntityCollection sys_emp_ext_org_pos { get { return ((IEntityWithRelationships)this).RelationshipManager.GetRelatedCollection("TEST.FK_sys_emp_ext_org_pos_sys_emp_SysEmpId", "sys_emp_ext_org_pos"); } set { if ((value != null)) { ((IEntityWithRelationships)this).RelationshipManager.InitializeRelatedCollection("TEST.FK_sys_emp_ext_org_pos_sys_emp_SysEmpId", "sys_emp_ext_org_pos", value); } } } /// /// 没有元数据文档可用。 /// [XmlIgnoreAttribute()] [SoapIgnoreAttribute()] [DataMemberAttribute()] [EdmRelationshipNavigationPropertyAttribute("TEST", "sys_emp_pos", "sys_pos")] public EntityCollection sys_pos { get { return ((IEntityWithRelationships)this).RelationshipManager.GetRelatedCollection("TEST.sys_emp_pos", "sys_pos"); } set { if ((value != null)) { ((IEntityWithRelationships)this).RelationshipManager.InitializeRelatedCollection("TEST.sys_emp_pos", "sys_pos", value); } } } #endregion } /// /// 没有元数据文档可用。 /// [EdmEntityTypeAttribute(NamespaceName="TEST", Name="sys_emp_ext_org_pos")] [Serializable()] [DataContractAttribute(IsReference=true)] public partial class sys_emp_ext_org_pos : EntityObject { #region 工厂方法 /// /// 创建新的 sys_emp_ext_org_pos 对象。 /// /// SysEmpId 属性的初始值。 /// SysOrgId 属性的初始值。 /// SysPosId 属性的初始值。 public static sys_emp_ext_org_pos Createsys_emp_ext_org_pos(global::System.Int64 sysEmpId, global::System.Int64 sysOrgId, global::System.Int64 sysPosId) { sys_emp_ext_org_pos sys_emp_ext_org_pos = new sys_emp_ext_org_pos(); sys_emp_ext_org_pos.SysEmpId = sysEmpId; sys_emp_ext_org_pos.SysOrgId = sysOrgId; sys_emp_ext_org_pos.SysPosId = sysPosId; return sys_emp_ext_org_pos; } #endregion #region 基元属性 /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 SysEmpId { get { return _SysEmpId; } set { if (_SysEmpId != value) { OnSysEmpIdChanging(value); ReportPropertyChanging("SysEmpId"); _SysEmpId = StructuralObject.SetValidValue(value); ReportPropertyChanged("SysEmpId"); OnSysEmpIdChanged(); } } } private global::System.Int64 _SysEmpId; partial void OnSysEmpIdChanging(global::System.Int64 value); partial void OnSysEmpIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 SysOrgId { get { return _SysOrgId; } set { if (_SysOrgId != value) { OnSysOrgIdChanging(value); ReportPropertyChanging("SysOrgId"); _SysOrgId = StructuralObject.SetValidValue(value); ReportPropertyChanged("SysOrgId"); OnSysOrgIdChanged(); } } } private global::System.Int64 _SysOrgId; partial void OnSysOrgIdChanging(global::System.Int64 value); partial void OnSysOrgIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 SysPosId { get { return _SysPosId; } set { if (_SysPosId != value) { OnSysPosIdChanging(value); ReportPropertyChanging("SysPosId"); _SysPosId = StructuralObject.SetValidValue(value); ReportPropertyChanged("SysPosId"); OnSysPosIdChanged(); } } } private global::System.Int64 _SysPosId; partial void OnSysPosIdChanging(global::System.Int64 value); partial void OnSysPosIdChanged(); #endregion #region 导航属性 /// /// 没有元数据文档可用。 /// [XmlIgnoreAttribute()] [SoapIgnoreAttribute()] [DataMemberAttribute()] [EdmRelationshipNavigationPropertyAttribute("TEST", "FK_sys_emp_ext_org_pos_sys_emp_SysEmpId", "sys_emp")] public sys_emp sys_emp { get { return ((IEntityWithRelationships)this).RelationshipManager.GetRelatedReference("TEST.FK_sys_emp_ext_org_pos_sys_emp_SysEmpId", "sys_emp").Value; } set { ((IEntityWithRelationships)this).RelationshipManager.GetRelatedReference("TEST.FK_sys_emp_ext_org_pos_sys_emp_SysEmpId", "sys_emp").Value = value; } } /// /// 没有元数据文档可用。 /// [BrowsableAttribute(false)] [DataMemberAttribute()] public EntityReference sys_empReference { get { return ((IEntityWithRelationships)this).RelationshipManager.GetRelatedReference("TEST.FK_sys_emp_ext_org_pos_sys_emp_SysEmpId", "sys_emp"); } set { if ((value != null)) { ((IEntityWithRelationships)this).RelationshipManager.InitializeRelatedReference("TEST.FK_sys_emp_ext_org_pos_sys_emp_SysEmpId", "sys_emp", value); } } } /// /// 没有元数据文档可用。 /// [XmlIgnoreAttribute()] [SoapIgnoreAttribute()] [DataMemberAttribute()] [EdmRelationshipNavigationPropertyAttribute("TEST", "FK_sys_emp_ext_org_pos_sys_org_SysOrgId", "sys_org")] public sys_org sys_org { get { return ((IEntityWithRelationships)this).RelationshipManager.GetRelatedReference("TEST.FK_sys_emp_ext_org_pos_sys_org_SysOrgId", "sys_org").Value; } set { ((IEntityWithRelationships)this).RelationshipManager.GetRelatedReference("TEST.FK_sys_emp_ext_org_pos_sys_org_SysOrgId", "sys_org").Value = value; } } /// /// 没有元数据文档可用。 /// [BrowsableAttribute(false)] [DataMemberAttribute()] public EntityReference sys_orgReference { get { return ((IEntityWithRelationships)this).RelationshipManager.GetRelatedReference("TEST.FK_sys_emp_ext_org_pos_sys_org_SysOrgId", "sys_org"); } set { if ((value != null)) { ((IEntityWithRelationships)this).RelationshipManager.InitializeRelatedReference("TEST.FK_sys_emp_ext_org_pos_sys_org_SysOrgId", "sys_org", value); } } } /// /// 没有元数据文档可用。 /// [XmlIgnoreAttribute()] [SoapIgnoreAttribute()] [DataMemberAttribute()] [EdmRelationshipNavigationPropertyAttribute("TEST", "FK_sys_emp_ext_org_pos_sys_pos_SysPosId", "sys_pos")] public sys_pos sys_pos { get { return ((IEntityWithRelationships)this).RelationshipManager.GetRelatedReference("TEST.FK_sys_emp_ext_org_pos_sys_pos_SysPosId", "sys_pos").Value; } set { ((IEntityWithRelationships)this).RelationshipManager.GetRelatedReference("TEST.FK_sys_emp_ext_org_pos_sys_pos_SysPosId", "sys_pos").Value = value; } } /// /// 没有元数据文档可用。 /// [BrowsableAttribute(false)] [DataMemberAttribute()] public EntityReference sys_posReference { get { return ((IEntityWithRelationships)this).RelationshipManager.GetRelatedReference("TEST.FK_sys_emp_ext_org_pos_sys_pos_SysPosId", "sys_pos"); } set { if ((value != null)) { ((IEntityWithRelationships)this).RelationshipManager.InitializeRelatedReference("TEST.FK_sys_emp_ext_org_pos_sys_pos_SysPosId", "sys_pos", value); } } } #endregion } /// /// 没有元数据文档可用。 /// [EdmEntityTypeAttribute(NamespaceName="TEST", Name="sys_file")] [Serializable()] [DataContractAttribute(IsReference=true)] public partial class sys_file : EntityObject { #region 工厂方法 /// /// 创建新的 sys_file 对象。 /// /// Id 属性的初始值。 /// FileLocation 属性的初始值。 /// IsDeleted 属性的初始值。 public static sys_file Createsys_file(global::System.Int64 id, global::System.Int32 fileLocation, global::System.Boolean isDeleted) { sys_file sys_file = new sys_file(); sys_file.Id = id; sys_file.FileLocation = fileLocation; sys_file.IsDeleted = isDeleted; return sys_file; } #endregion #region 基元属性 /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 Id { get { return _Id; } set { if (_Id != value) { OnIdChanging(value); ReportPropertyChanging("Id"); _Id = StructuralObject.SetValidValue(value); ReportPropertyChanged("Id"); OnIdChanged(); } } } private global::System.Int64 _Id; partial void OnIdChanging(global::System.Int64 value); partial void OnIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 FileLocation { get { return _FileLocation; } set { OnFileLocationChanging(value); ReportPropertyChanging("FileLocation"); _FileLocation = StructuralObject.SetValidValue(value); ReportPropertyChanged("FileLocation"); OnFileLocationChanged(); } } private global::System.Int32 _FileLocation; partial void OnFileLocationChanging(global::System.Int32 value); partial void OnFileLocationChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String FileBucket { get { return _FileBucket; } set { OnFileBucketChanging(value); ReportPropertyChanging("FileBucket"); _FileBucket = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("FileBucket"); OnFileBucketChanged(); } } private global::System.String _FileBucket; partial void OnFileBucketChanging(global::System.String value); partial void OnFileBucketChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String FileOriginName { get { return _FileOriginName; } set { OnFileOriginNameChanging(value); ReportPropertyChanging("FileOriginName"); _FileOriginName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("FileOriginName"); OnFileOriginNameChanged(); } } private global::System.String _FileOriginName; partial void OnFileOriginNameChanging(global::System.String value); partial void OnFileOriginNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String FileSuffix { get { return _FileSuffix; } set { OnFileSuffixChanging(value); ReportPropertyChanging("FileSuffix"); _FileSuffix = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("FileSuffix"); OnFileSuffixChanged(); } } private global::System.String _FileSuffix; partial void OnFileSuffixChanging(global::System.String value); partial void OnFileSuffixChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String FileSizeKb { get { return _FileSizeKb; } set { OnFileSizeKbChanging(value); ReportPropertyChanging("FileSizeKb"); _FileSizeKb = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("FileSizeKb"); OnFileSizeKbChanged(); } } private global::System.String _FileSizeKb; partial void OnFileSizeKbChanging(global::System.String value); partial void OnFileSizeKbChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String FileSizeInfo { get { return _FileSizeInfo; } set { OnFileSizeInfoChanging(value); ReportPropertyChanging("FileSizeInfo"); _FileSizeInfo = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("FileSizeInfo"); OnFileSizeInfoChanged(); } } private global::System.String _FileSizeInfo; partial void OnFileSizeInfoChanging(global::System.String value); partial void OnFileSizeInfoChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String FileObjectName { get { return _FileObjectName; } set { OnFileObjectNameChanging(value); ReportPropertyChanging("FileObjectName"); _FileObjectName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("FileObjectName"); OnFileObjectNameChanged(); } } private global::System.String _FileObjectName; partial void OnFileObjectNameChanging(global::System.String value); partial void OnFileObjectNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String FilePath { get { return _FilePath; } set { OnFilePathChanging(value); ReportPropertyChanging("FilePath"); _FilePath = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("FilePath"); OnFilePathChanged(); } } private global::System.String _FilePath; partial void OnFilePathChanging(global::System.String value); partial void OnFilePathChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedTime { get { return _CreatedTime; } set { OnCreatedTimeChanging(value); ReportPropertyChanging("CreatedTime"); _CreatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedTime"); OnCreatedTimeChanged(); } } private Nullable _CreatedTime; partial void OnCreatedTimeChanging(Nullable value); partial void OnCreatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedTime { get { return _UpdatedTime; } set { OnUpdatedTimeChanging(value); ReportPropertyChanging("UpdatedTime"); _UpdatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedTime"); OnUpdatedTimeChanged(); } } private Nullable _UpdatedTime; partial void OnUpdatedTimeChanging(Nullable value); partial void OnUpdatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedUserId { get { return _CreatedUserId; } set { OnCreatedUserIdChanging(value); ReportPropertyChanging("CreatedUserId"); _CreatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedUserId"); OnCreatedUserIdChanged(); } } private Nullable _CreatedUserId; partial void OnCreatedUserIdChanging(Nullable value); partial void OnCreatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String CreatedUserName { get { return _CreatedUserName; } set { OnCreatedUserNameChanging(value); ReportPropertyChanging("CreatedUserName"); _CreatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("CreatedUserName"); OnCreatedUserNameChanged(); } } private global::System.String _CreatedUserName; partial void OnCreatedUserNameChanging(global::System.String value); partial void OnCreatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedUserId { get { return _UpdatedUserId; } set { OnUpdatedUserIdChanging(value); ReportPropertyChanging("UpdatedUserId"); _UpdatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedUserId"); OnUpdatedUserIdChanged(); } } private Nullable _UpdatedUserId; partial void OnUpdatedUserIdChanging(Nullable value); partial void OnUpdatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String UpdatedUserName { get { return _UpdatedUserName; } set { OnUpdatedUserNameChanging(value); ReportPropertyChanging("UpdatedUserName"); _UpdatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("UpdatedUserName"); OnUpdatedUserNameChanged(); } } private global::System.String _UpdatedUserName; partial void OnUpdatedUserNameChanging(global::System.String value); partial void OnUpdatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Boolean IsDeleted { get { return _IsDeleted; } set { OnIsDeletedChanging(value); ReportPropertyChanging("IsDeleted"); _IsDeleted = StructuralObject.SetValidValue(value); ReportPropertyChanged("IsDeleted"); OnIsDeletedChanged(); } } private global::System.Boolean _IsDeleted; partial void OnIsDeletedChanging(global::System.Boolean value); partial void OnIsDeletedChanged(); #endregion } /// /// 没有元数据文档可用。 /// [EdmEntityTypeAttribute(NamespaceName="TEST", Name="sys_forms")] [Serializable()] [DataContractAttribute(IsReference=true)] public partial class sys_forms : EntityObject { #region 工厂方法 /// /// 创建新的 sys_forms 对象。 /// /// Id 属性的初始值。 /// Title 属性的初始值。 /// FormJson 属性的初始值。 /// Publish 属性的初始值。 /// TypeId 属性的初始值。 /// Version 属性的初始值。 /// IsDeleted 属性的初始值。 public static sys_forms Createsys_forms(global::System.Int64 id, global::System.String title, global::System.String formJson, global::System.Boolean publish, global::System.Int64 typeId, global::System.Int32 version, global::System.Boolean isDeleted) { sys_forms sys_forms = new sys_forms(); sys_forms.Id = id; sys_forms.Title = title; sys_forms.FormJson = formJson; sys_forms.Publish = publish; sys_forms.TypeId = typeId; sys_forms.Version = version; sys_forms.IsDeleted = isDeleted; return sys_forms; } #endregion #region 基元属性 /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 Id { get { return _Id; } set { if (_Id != value) { OnIdChanging(value); ReportPropertyChanging("Id"); _Id = StructuralObject.SetValidValue(value); ReportPropertyChanged("Id"); OnIdChanged(); } } } private global::System.Int64 _Id; partial void OnIdChanging(global::System.Int64 value); partial void OnIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.String Title { get { return _Title; } set { OnTitleChanging(value); ReportPropertyChanging("Title"); _Title = StructuralObject.SetValidValue(value, false); ReportPropertyChanged("Title"); OnTitleChanged(); } } private global::System.String _Title; partial void OnTitleChanging(global::System.String value); partial void OnTitleChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.String FormJson { get { return _FormJson; } set { OnFormJsonChanging(value); ReportPropertyChanging("FormJson"); _FormJson = StructuralObject.SetValidValue(value, false); ReportPropertyChanged("FormJson"); OnFormJsonChanged(); } } private global::System.String _FormJson; partial void OnFormJsonChanging(global::System.String value); partial void OnFormJsonChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Boolean Publish { get { return _Publish; } set { OnPublishChanging(value); ReportPropertyChanging("Publish"); _Publish = StructuralObject.SetValidValue(value); ReportPropertyChanged("Publish"); OnPublishChanged(); } } private global::System.Boolean _Publish; partial void OnPublishChanging(global::System.Boolean value); partial void OnPublishChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 TypeId { get { return _TypeId; } set { OnTypeIdChanging(value); ReportPropertyChanging("TypeId"); _TypeId = StructuralObject.SetValidValue(value); ReportPropertyChanged("TypeId"); OnTypeIdChanged(); } } private global::System.Int64 _TypeId; partial void OnTypeIdChanging(global::System.Int64 value); partial void OnTypeIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 Version { get { return _Version; } set { OnVersionChanging(value); ReportPropertyChanging("Version"); _Version = StructuralObject.SetValidValue(value); ReportPropertyChanged("Version"); OnVersionChanged(); } } private global::System.Int32 _Version; partial void OnVersionChanging(global::System.Int32 value); partial void OnVersionChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedTime { get { return _CreatedTime; } set { OnCreatedTimeChanging(value); ReportPropertyChanging("CreatedTime"); _CreatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedTime"); OnCreatedTimeChanged(); } } private Nullable _CreatedTime; partial void OnCreatedTimeChanging(Nullable value); partial void OnCreatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedTime { get { return _UpdatedTime; } set { OnUpdatedTimeChanging(value); ReportPropertyChanging("UpdatedTime"); _UpdatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedTime"); OnUpdatedTimeChanged(); } } private Nullable _UpdatedTime; partial void OnUpdatedTimeChanging(Nullable value); partial void OnUpdatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedUserId { get { return _CreatedUserId; } set { OnCreatedUserIdChanging(value); ReportPropertyChanging("CreatedUserId"); _CreatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedUserId"); OnCreatedUserIdChanged(); } } private Nullable _CreatedUserId; partial void OnCreatedUserIdChanging(Nullable value); partial void OnCreatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String CreatedUserName { get { return _CreatedUserName; } set { OnCreatedUserNameChanging(value); ReportPropertyChanging("CreatedUserName"); _CreatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("CreatedUserName"); OnCreatedUserNameChanged(); } } private global::System.String _CreatedUserName; partial void OnCreatedUserNameChanging(global::System.String value); partial void OnCreatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedUserId { get { return _UpdatedUserId; } set { OnUpdatedUserIdChanging(value); ReportPropertyChanging("UpdatedUserId"); _UpdatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedUserId"); OnUpdatedUserIdChanged(); } } private Nullable _UpdatedUserId; partial void OnUpdatedUserIdChanging(Nullable value); partial void OnUpdatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String UpdatedUserName { get { return _UpdatedUserName; } set { OnUpdatedUserNameChanging(value); ReportPropertyChanging("UpdatedUserName"); _UpdatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("UpdatedUserName"); OnUpdatedUserNameChanged(); } } private global::System.String _UpdatedUserName; partial void OnUpdatedUserNameChanging(global::System.String value); partial void OnUpdatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Boolean IsDeleted { get { return _IsDeleted; } set { OnIsDeletedChanging(value); ReportPropertyChanging("IsDeleted"); _IsDeleted = StructuralObject.SetValidValue(value); ReportPropertyChanged("IsDeleted"); OnIsDeletedChanged(); } } private global::System.Boolean _IsDeleted; partial void OnIsDeletedChanging(global::System.Boolean value); partial void OnIsDeletedChanged(); #endregion } /// /// 没有元数据文档可用。 /// [EdmEntityTypeAttribute(NamespaceName="TEST", Name="sys_log_audit")] [Serializable()] [DataContractAttribute(IsReference=true)] public partial class sys_log_audit : EntityObject { #region 工厂方法 /// /// 创建新的 sys_log_audit 对象。 /// /// Id 属性的初始值。 /// UserId 属性的初始值。 /// Operate 属性的初始值。 public static sys_log_audit Createsys_log_audit(global::System.Int32 id, global::System.Int64 userId, global::System.Int32 operate) { sys_log_audit sys_log_audit = new sys_log_audit(); sys_log_audit.Id = id; sys_log_audit.UserId = userId; sys_log_audit.Operate = operate; return sys_log_audit; } #endregion #region 基元属性 /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 Id { get { return _Id; } set { if (_Id != value) { OnIdChanging(value); ReportPropertyChanging("Id"); _Id = StructuralObject.SetValidValue(value); ReportPropertyChanged("Id"); OnIdChanged(); } } } private global::System.Int32 _Id; partial void OnIdChanging(global::System.Int32 value); partial void OnIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String TableName { get { return _TableName; } set { OnTableNameChanging(value); ReportPropertyChanging("TableName"); _TableName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("TableName"); OnTableNameChanged(); } } private global::System.String _TableName; partial void OnTableNameChanging(global::System.String value); partial void OnTableNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String ColumnName { get { return _ColumnName; } set { OnColumnNameChanging(value); ReportPropertyChanging("ColumnName"); _ColumnName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("ColumnName"); OnColumnNameChanged(); } } private global::System.String _ColumnName; partial void OnColumnNameChanging(global::System.String value); partial void OnColumnNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String NewValue { get { return _NewValue; } set { OnNewValueChanging(value); ReportPropertyChanging("NewValue"); _NewValue = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("NewValue"); OnNewValueChanged(); } } private global::System.String _NewValue; partial void OnNewValueChanging(global::System.String value); partial void OnNewValueChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String OldValue { get { return _OldValue; } set { OnOldValueChanging(value); ReportPropertyChanging("OldValue"); _OldValue = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("OldValue"); OnOldValueChanged(); } } private global::System.String _OldValue; partial void OnOldValueChanging(global::System.String value); partial void OnOldValueChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedTime { get { return _CreatedTime; } set { OnCreatedTimeChanging(value); ReportPropertyChanging("CreatedTime"); _CreatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedTime"); OnCreatedTimeChanged(); } } private Nullable _CreatedTime; partial void OnCreatedTimeChanging(Nullable value); partial void OnCreatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 UserId { get { return _UserId; } set { OnUserIdChanging(value); ReportPropertyChanging("UserId"); _UserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("UserId"); OnUserIdChanged(); } } private global::System.Int64 _UserId; partial void OnUserIdChanging(global::System.Int64 value); partial void OnUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String UserName { get { return _UserName; } set { OnUserNameChanging(value); ReportPropertyChanging("UserName"); _UserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("UserName"); OnUserNameChanged(); } } private global::System.String _UserName; partial void OnUserNameChanging(global::System.String value); partial void OnUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 Operate { get { return _Operate; } set { OnOperateChanging(value); ReportPropertyChanging("Operate"); _Operate = StructuralObject.SetValidValue(value); ReportPropertyChanged("Operate"); OnOperateChanged(); } } private global::System.Int32 _Operate; partial void OnOperateChanging(global::System.Int32 value); partial void OnOperateChanged(); #endregion } /// /// 没有元数据文档可用。 /// [EdmEntityTypeAttribute(NamespaceName="TEST", Name="sys_log_ex")] [Serializable()] [DataContractAttribute(IsReference=true)] public partial class sys_log_ex : EntityObject { #region 工厂方法 /// /// 创建新的 sys_log_ex 对象。 /// /// Id 属性的初始值。 public static sys_log_ex Createsys_log_ex(global::System.Int32 id) { sys_log_ex sys_log_ex = new sys_log_ex(); sys_log_ex.Id = id; return sys_log_ex; } #endregion #region 基元属性 /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 Id { get { return _Id; } set { if (_Id != value) { OnIdChanging(value); ReportPropertyChanging("Id"); _Id = StructuralObject.SetValidValue(value); ReportPropertyChanged("Id"); OnIdChanged(); } } } private global::System.Int32 _Id; partial void OnIdChanging(global::System.Int32 value); partial void OnIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Account { get { return _Account; } set { OnAccountChanging(value); ReportPropertyChanging("Account"); _Account = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Account"); OnAccountChanged(); } } private global::System.String _Account; partial void OnAccountChanging(global::System.String value); partial void OnAccountChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Name { get { return _Name; } set { OnNameChanging(value); ReportPropertyChanging("Name"); _Name = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Name"); OnNameChanged(); } } private global::System.String _Name; partial void OnNameChanging(global::System.String value); partial void OnNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String ClassName { get { return _ClassName; } set { OnClassNameChanging(value); ReportPropertyChanging("ClassName"); _ClassName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("ClassName"); OnClassNameChanged(); } } private global::System.String _ClassName; partial void OnClassNameChanging(global::System.String value); partial void OnClassNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String MethodName { get { return _MethodName; } set { OnMethodNameChanging(value); ReportPropertyChanging("MethodName"); _MethodName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("MethodName"); OnMethodNameChanged(); } } private global::System.String _MethodName; partial void OnMethodNameChanging(global::System.String value); partial void OnMethodNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String ExceptionName { get { return _ExceptionName; } set { OnExceptionNameChanging(value); ReportPropertyChanging("ExceptionName"); _ExceptionName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("ExceptionName"); OnExceptionNameChanged(); } } private global::System.String _ExceptionName; partial void OnExceptionNameChanging(global::System.String value); partial void OnExceptionNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String ExceptionMsg { get { return _ExceptionMsg; } set { OnExceptionMsgChanging(value); ReportPropertyChanging("ExceptionMsg"); _ExceptionMsg = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("ExceptionMsg"); OnExceptionMsgChanged(); } } private global::System.String _ExceptionMsg; partial void OnExceptionMsgChanging(global::System.String value); partial void OnExceptionMsgChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String ExceptionSource { get { return _ExceptionSource; } set { OnExceptionSourceChanging(value); ReportPropertyChanging("ExceptionSource"); _ExceptionSource = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("ExceptionSource"); OnExceptionSourceChanged(); } } private global::System.String _ExceptionSource; partial void OnExceptionSourceChanging(global::System.String value); partial void OnExceptionSourceChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String StackTrace { get { return _StackTrace; } set { OnStackTraceChanging(value); ReportPropertyChanging("StackTrace"); _StackTrace = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("StackTrace"); OnStackTraceChanged(); } } private global::System.String _StackTrace; partial void OnStackTraceChanging(global::System.String value); partial void OnStackTraceChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String ParamsObj { get { return _ParamsObj; } set { OnParamsObjChanging(value); ReportPropertyChanging("ParamsObj"); _ParamsObj = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("ParamsObj"); OnParamsObjChanged(); } } private global::System.String _ParamsObj; partial void OnParamsObjChanging(global::System.String value); partial void OnParamsObjChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable ExceptionTime { get { return _ExceptionTime; } set { OnExceptionTimeChanging(value); ReportPropertyChanging("ExceptionTime"); _ExceptionTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("ExceptionTime"); OnExceptionTimeChanged(); } } private Nullable _ExceptionTime; partial void OnExceptionTimeChanging(Nullable value); partial void OnExceptionTimeChanged(); #endregion } /// /// 没有元数据文档可用。 /// [EdmEntityTypeAttribute(NamespaceName="TEST", Name="sys_log_op")] [Serializable()] [DataContractAttribute(IsReference=true)] public partial class sys_log_op : EntityObject { #region 工厂方法 /// /// 创建新的 sys_log_op 对象。 /// /// Id 属性的初始值。 /// Success 属性的初始值。 /// ElapsedTime 属性的初始值。 public static sys_log_op Createsys_log_op(global::System.Int32 id, global::System.Int32 success, global::System.Int64 elapsedTime) { sys_log_op sys_log_op = new sys_log_op(); sys_log_op.Id = id; sys_log_op.Success = success; sys_log_op.ElapsedTime = elapsedTime; return sys_log_op; } #endregion #region 基元属性 /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 Id { get { return _Id; } set { if (_Id != value) { OnIdChanging(value); ReportPropertyChanging("Id"); _Id = StructuralObject.SetValidValue(value); ReportPropertyChanged("Id"); OnIdChanged(); } } } private global::System.Int32 _Id; partial void OnIdChanging(global::System.Int32 value); partial void OnIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Name { get { return _Name; } set { OnNameChanging(value); ReportPropertyChanging("Name"); _Name = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Name"); OnNameChanged(); } } private global::System.String _Name; partial void OnNameChanging(global::System.String value); partial void OnNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 Success { get { return _Success; } set { OnSuccessChanging(value); ReportPropertyChanging("Success"); _Success = StructuralObject.SetValidValue(value); ReportPropertyChanged("Success"); OnSuccessChanged(); } } private global::System.Int32 _Success; partial void OnSuccessChanging(global::System.Int32 value); partial void OnSuccessChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Message { get { return _Message; } set { OnMessageChanging(value); ReportPropertyChanging("Message"); _Message = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Message"); OnMessageChanged(); } } private global::System.String _Message; partial void OnMessageChanging(global::System.String value); partial void OnMessageChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Ip { get { return _Ip; } set { OnIpChanging(value); ReportPropertyChanging("Ip"); _Ip = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Ip"); OnIpChanged(); } } private global::System.String _Ip; partial void OnIpChanging(global::System.String value); partial void OnIpChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Location { get { return _Location; } set { OnLocationChanging(value); ReportPropertyChanging("Location"); _Location = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Location"); OnLocationChanged(); } } private global::System.String _Location; partial void OnLocationChanging(global::System.String value); partial void OnLocationChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Browser { get { return _Browser; } set { OnBrowserChanging(value); ReportPropertyChanging("Browser"); _Browser = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Browser"); OnBrowserChanged(); } } private global::System.String _Browser; partial void OnBrowserChanging(global::System.String value); partial void OnBrowserChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Os { get { return _Os; } set { OnOsChanging(value); ReportPropertyChanging("Os"); _Os = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Os"); OnOsChanged(); } } private global::System.String _Os; partial void OnOsChanging(global::System.String value); partial void OnOsChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Url { get { return _Url; } set { OnUrlChanging(value); ReportPropertyChanging("Url"); _Url = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Url"); OnUrlChanged(); } } private global::System.String _Url; partial void OnUrlChanging(global::System.String value); partial void OnUrlChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String ClassName { get { return _ClassName; } set { OnClassNameChanging(value); ReportPropertyChanging("ClassName"); _ClassName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("ClassName"); OnClassNameChanged(); } } private global::System.String _ClassName; partial void OnClassNameChanging(global::System.String value); partial void OnClassNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String MethodName { get { return _MethodName; } set { OnMethodNameChanging(value); ReportPropertyChanging("MethodName"); _MethodName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("MethodName"); OnMethodNameChanged(); } } private global::System.String _MethodName; partial void OnMethodNameChanging(global::System.String value); partial void OnMethodNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String ReqMethod { get { return _ReqMethod; } set { OnReqMethodChanging(value); ReportPropertyChanging("ReqMethod"); _ReqMethod = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("ReqMethod"); OnReqMethodChanged(); } } private global::System.String _ReqMethod; partial void OnReqMethodChanging(global::System.String value); partial void OnReqMethodChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Param { get { return _Param; } set { OnParamChanging(value); ReportPropertyChanging("Param"); _Param = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Param"); OnParamChanged(); } } private global::System.String _Param; partial void OnParamChanging(global::System.String value); partial void OnParamChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Result { get { return _Result; } set { OnResultChanging(value); ReportPropertyChanging("Result"); _Result = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Result"); OnResultChanged(); } } private global::System.String _Result; partial void OnResultChanging(global::System.String value); partial void OnResultChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 ElapsedTime { get { return _ElapsedTime; } set { OnElapsedTimeChanging(value); ReportPropertyChanging("ElapsedTime"); _ElapsedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("ElapsedTime"); OnElapsedTimeChanged(); } } private global::System.Int64 _ElapsedTime; partial void OnElapsedTimeChanging(global::System.Int64 value); partial void OnElapsedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable OpTime { get { return _OpTime; } set { OnOpTimeChanging(value); ReportPropertyChanging("OpTime"); _OpTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("OpTime"); OnOpTimeChanged(); } } private Nullable _OpTime; partial void OnOpTimeChanging(Nullable value); partial void OnOpTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Account { get { return _Account; } set { OnAccountChanging(value); ReportPropertyChanging("Account"); _Account = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Account"); OnAccountChanged(); } } private global::System.String _Account; partial void OnAccountChanging(global::System.String value); partial void OnAccountChanged(); #endregion } /// /// 没有元数据文档可用。 /// [EdmEntityTypeAttribute(NamespaceName="TEST", Name="sys_log_vis")] [Serializable()] [DataContractAttribute(IsReference=true)] public partial class sys_log_vis : EntityObject { #region 工厂方法 /// /// 创建新的 sys_log_vis 对象。 /// /// Id 属性的初始值。 /// Success 属性的初始值。 /// VisType 属性的初始值。 public static sys_log_vis Createsys_log_vis(global::System.Int32 id, global::System.Int32 success, global::System.Int32 visType) { sys_log_vis sys_log_vis = new sys_log_vis(); sys_log_vis.Id = id; sys_log_vis.Success = success; sys_log_vis.VisType = visType; return sys_log_vis; } #endregion #region 基元属性 /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 Id { get { return _Id; } set { if (_Id != value) { OnIdChanging(value); ReportPropertyChanging("Id"); _Id = StructuralObject.SetValidValue(value); ReportPropertyChanged("Id"); OnIdChanged(); } } } private global::System.Int32 _Id; partial void OnIdChanging(global::System.Int32 value); partial void OnIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Name { get { return _Name; } set { OnNameChanging(value); ReportPropertyChanging("Name"); _Name = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Name"); OnNameChanged(); } } private global::System.String _Name; partial void OnNameChanging(global::System.String value); partial void OnNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 Success { get { return _Success; } set { OnSuccessChanging(value); ReportPropertyChanging("Success"); _Success = StructuralObject.SetValidValue(value); ReportPropertyChanged("Success"); OnSuccessChanged(); } } private global::System.Int32 _Success; partial void OnSuccessChanging(global::System.Int32 value); partial void OnSuccessChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Message { get { return _Message; } set { OnMessageChanging(value); ReportPropertyChanging("Message"); _Message = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Message"); OnMessageChanged(); } } private global::System.String _Message; partial void OnMessageChanging(global::System.String value); partial void OnMessageChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Ip { get { return _Ip; } set { OnIpChanging(value); ReportPropertyChanging("Ip"); _Ip = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Ip"); OnIpChanged(); } } private global::System.String _Ip; partial void OnIpChanging(global::System.String value); partial void OnIpChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Location { get { return _Location; } set { OnLocationChanging(value); ReportPropertyChanging("Location"); _Location = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Location"); OnLocationChanged(); } } private global::System.String _Location; partial void OnLocationChanging(global::System.String value); partial void OnLocationChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Browser { get { return _Browser; } set { OnBrowserChanging(value); ReportPropertyChanging("Browser"); _Browser = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Browser"); OnBrowserChanged(); } } private global::System.String _Browser; partial void OnBrowserChanging(global::System.String value); partial void OnBrowserChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Os { get { return _Os; } set { OnOsChanging(value); ReportPropertyChanging("Os"); _Os = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Os"); OnOsChanged(); } } private global::System.String _Os; partial void OnOsChanging(global::System.String value); partial void OnOsChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 VisType { get { return _VisType; } set { OnVisTypeChanging(value); ReportPropertyChanging("VisType"); _VisType = StructuralObject.SetValidValue(value); ReportPropertyChanged("VisType"); OnVisTypeChanged(); } } private global::System.Int32 _VisType; partial void OnVisTypeChanging(global::System.Int32 value); partial void OnVisTypeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable VisTime { get { return _VisTime; } set { OnVisTimeChanging(value); ReportPropertyChanging("VisTime"); _VisTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("VisTime"); OnVisTimeChanged(); } } private Nullable _VisTime; partial void OnVisTimeChanging(Nullable value); partial void OnVisTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Account { get { return _Account; } set { OnAccountChanging(value); ReportPropertyChanging("Account"); _Account = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Account"); OnAccountChanged(); } } private global::System.String _Account; partial void OnAccountChanging(global::System.String value); partial void OnAccountChanged(); #endregion } /// /// 没有元数据文档可用。 /// [EdmEntityTypeAttribute(NamespaceName="TEST", Name="sys_low_code_module")] [Serializable()] [DataContractAttribute(IsReference=true)] public partial class sys_low_code_module : EntityObject { #region 工厂方法 /// /// 创建新的 sys_low_code_module 对象。 /// /// Id 属性的初始值。 /// MenuPid 属性的初始值。 /// FormDesignType 属性的初始值。 /// IsDeleted 属性的初始值。 public static sys_low_code_module Createsys_low_code_module(global::System.Int64 id, global::System.Int64 menuPid, global::System.Int32 formDesignType, global::System.Boolean isDeleted) { sys_low_code_module sys_low_code_module = new sys_low_code_module(); sys_low_code_module.Id = id; sys_low_code_module.MenuPid = menuPid; sys_low_code_module.FormDesignType = formDesignType; sys_low_code_module.IsDeleted = isDeleted; return sys_low_code_module; } #endregion #region 基元属性 /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 Id { get { return _Id; } set { if (_Id != value) { OnIdChanging(value); ReportPropertyChanging("Id"); _Id = StructuralObject.SetValidValue(value); ReportPropertyChanged("Id"); OnIdChanged(); } } } private global::System.Int64 _Id; partial void OnIdChanging(global::System.Int64 value); partial void OnIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String AuthorName { get { return _AuthorName; } set { OnAuthorNameChanging(value); ReportPropertyChanging("AuthorName"); _AuthorName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("AuthorName"); OnAuthorNameChanged(); } } private global::System.String _AuthorName; partial void OnAuthorNameChanging(global::System.String value); partial void OnAuthorNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String GenerateType { get { return _GenerateType; } set { OnGenerateTypeChanging(value); ReportPropertyChanging("GenerateType"); _GenerateType = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("GenerateType"); OnGenerateTypeChanged(); } } private global::System.String _GenerateType; partial void OnGenerateTypeChanging(global::System.String value); partial void OnGenerateTypeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String DatabaseName { get { return _DatabaseName; } set { OnDatabaseNameChanging(value); ReportPropertyChanging("DatabaseName"); _DatabaseName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("DatabaseName"); OnDatabaseNameChanged(); } } private global::System.String _DatabaseName; partial void OnDatabaseNameChanging(global::System.String value); partial void OnDatabaseNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String NameSpace { get { return _NameSpace; } set { OnNameSpaceChanging(value); ReportPropertyChanging("NameSpace"); _NameSpace = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("NameSpace"); OnNameSpaceChanged(); } } private global::System.String _NameSpace; partial void OnNameSpaceChanging(global::System.String value); partial void OnNameSpaceChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String BusName { get { return _BusName; } set { OnBusNameChanging(value); ReportPropertyChanging("BusName"); _BusName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("BusName"); OnBusNameChanged(); } } private global::System.String _BusName; partial void OnBusNameChanging(global::System.String value); partial void OnBusNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String MenuApplication { get { return _MenuApplication; } set { OnMenuApplicationChanging(value); ReportPropertyChanging("MenuApplication"); _MenuApplication = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("MenuApplication"); OnMenuApplicationChanged(); } } private global::System.String _MenuApplication; partial void OnMenuApplicationChanging(global::System.String value); partial void OnMenuApplicationChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 MenuPid { get { return _MenuPid; } set { OnMenuPidChanging(value); ReportPropertyChanging("MenuPid"); _MenuPid = StructuralObject.SetValidValue(value); ReportPropertyChanged("MenuPid"); OnMenuPidChanged(); } } private global::System.Int64 _MenuPid; partial void OnMenuPidChanging(global::System.Int64 value); partial void OnMenuPidChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 FormDesignType { get { return _FormDesignType; } set { OnFormDesignTypeChanging(value); ReportPropertyChanging("FormDesignType"); _FormDesignType = StructuralObject.SetValidValue(value); ReportPropertyChanged("FormDesignType"); OnFormDesignTypeChanged(); } } private global::System.Int32 _FormDesignType; partial void OnFormDesignTypeChanging(global::System.Int32 value); partial void OnFormDesignTypeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String FormDesign { get { return _FormDesign; } set { OnFormDesignChanging(value); ReportPropertyChanging("FormDesign"); _FormDesign = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("FormDesign"); OnFormDesignChanged(); } } private global::System.String _FormDesign; partial void OnFormDesignChanging(global::System.String value); partial void OnFormDesignChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedTime { get { return _CreatedTime; } set { OnCreatedTimeChanging(value); ReportPropertyChanging("CreatedTime"); _CreatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedTime"); OnCreatedTimeChanged(); } } private Nullable _CreatedTime; partial void OnCreatedTimeChanging(Nullable value); partial void OnCreatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedTime { get { return _UpdatedTime; } set { OnUpdatedTimeChanging(value); ReportPropertyChanging("UpdatedTime"); _UpdatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedTime"); OnUpdatedTimeChanged(); } } private Nullable _UpdatedTime; partial void OnUpdatedTimeChanging(Nullable value); partial void OnUpdatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedUserId { get { return _CreatedUserId; } set { OnCreatedUserIdChanging(value); ReportPropertyChanging("CreatedUserId"); _CreatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedUserId"); OnCreatedUserIdChanged(); } } private Nullable _CreatedUserId; partial void OnCreatedUserIdChanging(Nullable value); partial void OnCreatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String CreatedUserName { get { return _CreatedUserName; } set { OnCreatedUserNameChanging(value); ReportPropertyChanging("CreatedUserName"); _CreatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("CreatedUserName"); OnCreatedUserNameChanged(); } } private global::System.String _CreatedUserName; partial void OnCreatedUserNameChanging(global::System.String value); partial void OnCreatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedUserId { get { return _UpdatedUserId; } set { OnUpdatedUserIdChanging(value); ReportPropertyChanging("UpdatedUserId"); _UpdatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedUserId"); OnUpdatedUserIdChanged(); } } private Nullable _UpdatedUserId; partial void OnUpdatedUserIdChanging(Nullable value); partial void OnUpdatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String UpdatedUserName { get { return _UpdatedUserName; } set { OnUpdatedUserNameChanging(value); ReportPropertyChanging("UpdatedUserName"); _UpdatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("UpdatedUserName"); OnUpdatedUserNameChanged(); } } private global::System.String _UpdatedUserName; partial void OnUpdatedUserNameChanging(global::System.String value); partial void OnUpdatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Boolean IsDeleted { get { return _IsDeleted; } set { OnIsDeletedChanging(value); ReportPropertyChanging("IsDeleted"); _IsDeleted = StructuralObject.SetValidValue(value); ReportPropertyChanged("IsDeleted"); OnIsDeletedChanged(); } } private global::System.Boolean _IsDeleted; partial void OnIsDeletedChanging(global::System.Boolean value); partial void OnIsDeletedChanged(); #endregion #region 导航属性 /// /// 没有元数据文档可用。 /// [XmlIgnoreAttribute()] [SoapIgnoreAttribute()] [DataMemberAttribute()] [EdmRelationshipNavigationPropertyAttribute("TEST", "FK_sys_low_code_module_database_sys_low_code_module_SysLowCodeId", "sys_low_code_module_database")] public EntityCollection sys_low_code_module_database { get { return ((IEntityWithRelationships)this).RelationshipManager.GetRelatedCollection("TEST.FK_sys_low_code_module_database_sys_low_code_module_SysLowCodeId", "sys_low_code_module_database"); } set { if ((value != null)) { ((IEntityWithRelationships)this).RelationshipManager.InitializeRelatedCollection("TEST.FK_sys_low_code_module_database_sys_low_code_module_SysLowCodeId", "sys_low_code_module_database", value); } } } #endregion } /// /// 没有元数据文档可用。 /// [EdmEntityTypeAttribute(NamespaceName="TEST", Name="sys_low_code_module_database")] [Serializable()] [DataContractAttribute(IsReference=true)] public partial class sys_low_code_module_database : EntityObject { #region 工厂方法 /// /// 创建新的 sys_low_code_module_database 对象。 /// /// Id 属性的初始值。 /// SysLowCodeId 属性的初始值。 /// IsDeleted 属性的初始值。 public static sys_low_code_module_database Createsys_low_code_module_database(global::System.Guid id, global::System.Int64 sysLowCodeId, global::System.Boolean isDeleted) { sys_low_code_module_database sys_low_code_module_database = new sys_low_code_module_database(); sys_low_code_module_database.Id = id; sys_low_code_module_database.SysLowCodeId = sysLowCodeId; sys_low_code_module_database.IsDeleted = isDeleted; return sys_low_code_module_database; } #endregion #region 基元属性 /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Guid Id { get { return _Id; } set { if (_Id != value) { OnIdChanging(value); ReportPropertyChanging("Id"); _Id = StructuralObject.SetValidValue(value); ReportPropertyChanged("Id"); OnIdChanged(); } } } private global::System.Guid _Id; partial void OnIdChanging(global::System.Guid value); partial void OnIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 SysLowCodeId { get { return _SysLowCodeId; } set { OnSysLowCodeIdChanging(value); ReportPropertyChanging("SysLowCodeId"); _SysLowCodeId = StructuralObject.SetValidValue(value); ReportPropertyChanged("SysLowCodeId"); OnSysLowCodeIdChanged(); } } private global::System.Int64 _SysLowCodeId; partial void OnSysLowCodeIdChanging(global::System.Int64 value); partial void OnSysLowCodeIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Control_Key { get { return _Control_Key; } set { OnControl_KeyChanging(value); ReportPropertyChanging("Control_Key"); _Control_Key = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Control_Key"); OnControl_KeyChanged(); } } private global::System.String _Control_Key; partial void OnControl_KeyChanging(global::System.String value); partial void OnControl_KeyChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Control_Label { get { return _Control_Label; } set { OnControl_LabelChanging(value); ReportPropertyChanging("Control_Label"); _Control_Label = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Control_Label"); OnControl_LabelChanged(); } } private global::System.String _Control_Label; partial void OnControl_LabelChanging(global::System.String value); partial void OnControl_LabelChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Control_Model { get { return _Control_Model; } set { OnControl_ModelChanging(value); ReportPropertyChanging("Control_Model"); _Control_Model = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Control_Model"); OnControl_ModelChanged(); } } private global::System.String _Control_Model; partial void OnControl_ModelChanging(global::System.String value); partial void OnControl_ModelChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Control_Type { get { return _Control_Type; } set { OnControl_TypeChanging(value); ReportPropertyChanging("Control_Type"); _Control_Type = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Control_Type"); OnControl_TypeChanged(); } } private global::System.String _Control_Type; partial void OnControl_TypeChanging(global::System.String value); partial void OnControl_TypeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String TableName { get { return _TableName; } set { OnTableNameChanging(value); ReportPropertyChanging("TableName"); _TableName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("TableName"); OnTableNameChanged(); } } private global::System.String _TableName; partial void OnTableNameChanging(global::System.String value); partial void OnTableNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String ClassName { get { return _ClassName; } set { OnClassNameChanging(value); ReportPropertyChanging("ClassName"); _ClassName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("ClassName"); OnClassNameChanged(); } } private global::System.String _ClassName; partial void OnClassNameChanging(global::System.String value); partial void OnClassNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String TableDesc { get { return _TableDesc; } set { OnTableDescChanging(value); ReportPropertyChanging("TableDesc"); _TableDesc = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("TableDesc"); OnTableDescChanged(); } } private global::System.String _TableDesc; partial void OnTableDescChanging(global::System.String value); partial void OnTableDescChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String FieldName { get { return _FieldName; } set { OnFieldNameChanging(value); ReportPropertyChanging("FieldName"); _FieldName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("FieldName"); OnFieldNameChanged(); } } private global::System.String _FieldName; partial void OnFieldNameChanging(global::System.String value); partial void OnFieldNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String DbTypeName { get { return _DbTypeName; } set { OnDbTypeNameChanging(value); ReportPropertyChanging("DbTypeName"); _DbTypeName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("DbTypeName"); OnDbTypeNameChanged(); } } private global::System.String _DbTypeName; partial void OnDbTypeNameChanging(global::System.String value); partial void OnDbTypeNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String DtoTypeName { get { return _DtoTypeName; } set { OnDtoTypeNameChanging(value); ReportPropertyChanging("DtoTypeName"); _DtoTypeName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("DtoTypeName"); OnDtoTypeNameChanged(); } } private global::System.String _DtoTypeName; partial void OnDtoTypeNameChanging(global::System.String value); partial void OnDtoTypeNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String DbParam { get { return _DbParam; } set { OnDbParamChanging(value); ReportPropertyChanging("DbParam"); _DbParam = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("DbParam"); OnDbParamChanged(); } } private global::System.String _DbParam; partial void OnDbParamChanging(global::System.String value); partial void OnDbParamChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable IsRequired { get { return _IsRequired; } set { OnIsRequiredChanging(value); ReportPropertyChanging("IsRequired"); _IsRequired = StructuralObject.SetValidValue(value); ReportPropertyChanged("IsRequired"); OnIsRequiredChanged(); } } private Nullable _IsRequired; partial void OnIsRequiredChanging(Nullable value); partial void OnIsRequiredChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable WhetherTable { get { return _WhetherTable; } set { OnWhetherTableChanging(value); ReportPropertyChanging("WhetherTable"); _WhetherTable = StructuralObject.SetValidValue(value); ReportPropertyChanged("WhetherTable"); OnWhetherTableChanged(); } } private Nullable _WhetherTable; partial void OnWhetherTableChanging(Nullable value); partial void OnWhetherTableChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable WhetherOrderBy { get { return _WhetherOrderBy; } set { OnWhetherOrderByChanging(value); ReportPropertyChanging("WhetherOrderBy"); _WhetherOrderBy = StructuralObject.SetValidValue(value); ReportPropertyChanged("WhetherOrderBy"); OnWhetherOrderByChanged(); } } private Nullable _WhetherOrderBy; partial void OnWhetherOrderByChanging(Nullable value); partial void OnWhetherOrderByChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable WhetherAddUpdate { get { return _WhetherAddUpdate; } set { OnWhetherAddUpdateChanging(value); ReportPropertyChanging("WhetherAddUpdate"); _WhetherAddUpdate = StructuralObject.SetValidValue(value); ReportPropertyChanged("WhetherAddUpdate"); OnWhetherAddUpdateChanged(); } } private Nullable _WhetherAddUpdate; partial void OnWhetherAddUpdateChanging(Nullable value); partial void OnWhetherAddUpdateChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable QueryWhether { get { return _QueryWhether; } set { OnQueryWhetherChanging(value); ReportPropertyChanging("QueryWhether"); _QueryWhether = StructuralObject.SetValidValue(value); ReportPropertyChanged("QueryWhether"); OnQueryWhetherChanged(); } } private Nullable _QueryWhether; partial void OnQueryWhetherChanging(Nullable value); partial void OnQueryWhetherChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String QueryType { get { return _QueryType; } set { OnQueryTypeChanging(value); ReportPropertyChanging("QueryType"); _QueryType = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("QueryType"); OnQueryTypeChanged(); } } private global::System.String _QueryType; partial void OnQueryTypeChanging(global::System.String value); partial void OnQueryTypeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedTime { get { return _CreatedTime; } set { OnCreatedTimeChanging(value); ReportPropertyChanging("CreatedTime"); _CreatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedTime"); OnCreatedTimeChanged(); } } private Nullable _CreatedTime; partial void OnCreatedTimeChanging(Nullable value); partial void OnCreatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedTime { get { return _UpdatedTime; } set { OnUpdatedTimeChanging(value); ReportPropertyChanging("UpdatedTime"); _UpdatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedTime"); OnUpdatedTimeChanged(); } } private Nullable _UpdatedTime; partial void OnUpdatedTimeChanging(Nullable value); partial void OnUpdatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedUserId { get { return _CreatedUserId; } set { OnCreatedUserIdChanging(value); ReportPropertyChanging("CreatedUserId"); _CreatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedUserId"); OnCreatedUserIdChanged(); } } private Nullable _CreatedUserId; partial void OnCreatedUserIdChanging(Nullable value); partial void OnCreatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String CreatedUserName { get { return _CreatedUserName; } set { OnCreatedUserNameChanging(value); ReportPropertyChanging("CreatedUserName"); _CreatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("CreatedUserName"); OnCreatedUserNameChanged(); } } private global::System.String _CreatedUserName; partial void OnCreatedUserNameChanging(global::System.String value); partial void OnCreatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedUserId { get { return _UpdatedUserId; } set { OnUpdatedUserIdChanging(value); ReportPropertyChanging("UpdatedUserId"); _UpdatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedUserId"); OnUpdatedUserIdChanged(); } } private Nullable _UpdatedUserId; partial void OnUpdatedUserIdChanging(Nullable value); partial void OnUpdatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String UpdatedUserName { get { return _UpdatedUserName; } set { OnUpdatedUserNameChanging(value); ReportPropertyChanging("UpdatedUserName"); _UpdatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("UpdatedUserName"); OnUpdatedUserNameChanged(); } } private global::System.String _UpdatedUserName; partial void OnUpdatedUserNameChanging(global::System.String value); partial void OnUpdatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Boolean IsDeleted { get { return _IsDeleted; } set { OnIsDeletedChanging(value); ReportPropertyChanging("IsDeleted"); _IsDeleted = StructuralObject.SetValidValue(value); ReportPropertyChanged("IsDeleted"); OnIsDeletedChanged(); } } private global::System.Boolean _IsDeleted; partial void OnIsDeletedChanging(global::System.Boolean value); partial void OnIsDeletedChanged(); #endregion #region 导航属性 /// /// 没有元数据文档可用。 /// [XmlIgnoreAttribute()] [SoapIgnoreAttribute()] [DataMemberAttribute()] [EdmRelationshipNavigationPropertyAttribute("TEST", "FK_sys_low_code_module_database_sys_low_code_module_SysLowCodeId", "sys_low_code_module")] public sys_low_code_module sys_low_code_module { get { return ((IEntityWithRelationships)this).RelationshipManager.GetRelatedReference("TEST.FK_sys_low_code_module_database_sys_low_code_module_SysLowCodeId", "sys_low_code_module").Value; } set { ((IEntityWithRelationships)this).RelationshipManager.GetRelatedReference("TEST.FK_sys_low_code_module_database_sys_low_code_module_SysLowCodeId", "sys_low_code_module").Value = value; } } /// /// 没有元数据文档可用。 /// [BrowsableAttribute(false)] [DataMemberAttribute()] public EntityReference sys_low_code_moduleReference { get { return ((IEntityWithRelationships)this).RelationshipManager.GetRelatedReference("TEST.FK_sys_low_code_module_database_sys_low_code_module_SysLowCodeId", "sys_low_code_module"); } set { if ((value != null)) { ((IEntityWithRelationships)this).RelationshipManager.InitializeRelatedReference("TEST.FK_sys_low_code_module_database_sys_low_code_module_SysLowCodeId", "sys_low_code_module", value); } } } #endregion } /// /// 没有元数据文档可用。 /// [EdmEntityTypeAttribute(NamespaceName="TEST", Name="sys_menu")] [Serializable()] [DataContractAttribute(IsReference=true)] public partial class sys_menu : EntityObject { #region 工厂方法 /// /// 创建新的 sys_menu 对象。 /// /// Id 属性的初始值。 /// Pid 属性的初始值。 /// Name 属性的初始值。 /// Code 属性的初始值。 /// Type 属性的初始值。 /// OpenType 属性的初始值。 /// Weight 属性的初始值。 /// Sort 属性的初始值。 /// Status 属性的初始值。 /// IsDeleted 属性的初始值。 public static sys_menu Createsys_menu(global::System.Int64 id, global::System.Int64 pid, global::System.String name, global::System.String code, global::System.Int32 type, global::System.Int32 openType, global::System.Int32 weight, global::System.Int32 sort, global::System.Int32 status, global::System.Boolean isDeleted) { sys_menu sys_menu = new sys_menu(); sys_menu.Id = id; sys_menu.Pid = pid; sys_menu.Name = name; sys_menu.Code = code; sys_menu.Type = type; sys_menu.OpenType = openType; sys_menu.Weight = weight; sys_menu.Sort = sort; sys_menu.Status = status; sys_menu.IsDeleted = isDeleted; return sys_menu; } #endregion #region 基元属性 /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 Id { get { return _Id; } set { if (_Id != value) { OnIdChanging(value); ReportPropertyChanging("Id"); _Id = StructuralObject.SetValidValue(value); ReportPropertyChanged("Id"); OnIdChanged(); } } } private global::System.Int64 _Id; partial void OnIdChanging(global::System.Int64 value); partial void OnIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 Pid { get { return _Pid; } set { OnPidChanging(value); ReportPropertyChanging("Pid"); _Pid = StructuralObject.SetValidValue(value); ReportPropertyChanged("Pid"); OnPidChanged(); } } private global::System.Int64 _Pid; partial void OnPidChanging(global::System.Int64 value); partial void OnPidChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Pids { get { return _Pids; } set { OnPidsChanging(value); ReportPropertyChanging("Pids"); _Pids = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Pids"); OnPidsChanged(); } } private global::System.String _Pids; partial void OnPidsChanging(global::System.String value); partial void OnPidsChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.String Name { get { return _Name; } set { OnNameChanging(value); ReportPropertyChanging("Name"); _Name = StructuralObject.SetValidValue(value, false); ReportPropertyChanged("Name"); OnNameChanged(); } } private global::System.String _Name; partial void OnNameChanging(global::System.String value); partial void OnNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.String Code { get { return _Code; } set { OnCodeChanging(value); ReportPropertyChanging("Code"); _Code = StructuralObject.SetValidValue(value, false); ReportPropertyChanged("Code"); OnCodeChanged(); } } private global::System.String _Code; partial void OnCodeChanging(global::System.String value); partial void OnCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 Type { get { return _Type; } set { OnTypeChanging(value); ReportPropertyChanging("Type"); _Type = StructuralObject.SetValidValue(value); ReportPropertyChanged("Type"); OnTypeChanged(); } } private global::System.Int32 _Type; partial void OnTypeChanging(global::System.Int32 value); partial void OnTypeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Icon { get { return _Icon; } set { OnIconChanging(value); ReportPropertyChanging("Icon"); _Icon = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Icon"); OnIconChanged(); } } private global::System.String _Icon; partial void OnIconChanging(global::System.String value); partial void OnIconChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Router { get { return _Router; } set { OnRouterChanging(value); ReportPropertyChanging("Router"); _Router = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Router"); OnRouterChanged(); } } private global::System.String _Router; partial void OnRouterChanging(global::System.String value); partial void OnRouterChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Component { get { return _Component; } set { OnComponentChanging(value); ReportPropertyChanging("Component"); _Component = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Component"); OnComponentChanged(); } } private global::System.String _Component; partial void OnComponentChanging(global::System.String value); partial void OnComponentChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Permission { get { return _Permission; } set { OnPermissionChanging(value); ReportPropertyChanging("Permission"); _Permission = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Permission"); OnPermissionChanged(); } } private global::System.String _Permission; partial void OnPermissionChanging(global::System.String value); partial void OnPermissionChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Application { get { return _Application; } set { OnApplicationChanging(value); ReportPropertyChanging("Application"); _Application = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Application"); OnApplicationChanged(); } } private global::System.String _Application; partial void OnApplicationChanging(global::System.String value); partial void OnApplicationChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 OpenType { get { return _OpenType; } set { OnOpenTypeChanging(value); ReportPropertyChanging("OpenType"); _OpenType = StructuralObject.SetValidValue(value); ReportPropertyChanged("OpenType"); OnOpenTypeChanged(); } } private global::System.Int32 _OpenType; partial void OnOpenTypeChanging(global::System.Int32 value); partial void OnOpenTypeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Visible { get { return _Visible; } set { OnVisibleChanging(value); ReportPropertyChanging("Visible"); _Visible = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Visible"); OnVisibleChanged(); } } private global::System.String _Visible; partial void OnVisibleChanging(global::System.String value); partial void OnVisibleChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Link { get { return _Link; } set { OnLinkChanging(value); ReportPropertyChanging("Link"); _Link = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Link"); OnLinkChanged(); } } private global::System.String _Link; partial void OnLinkChanging(global::System.String value); partial void OnLinkChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Redirect { get { return _Redirect; } set { OnRedirectChanging(value); ReportPropertyChanging("Redirect"); _Redirect = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Redirect"); OnRedirectChanged(); } } private global::System.String _Redirect; partial void OnRedirectChanging(global::System.String value); partial void OnRedirectChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 Weight { get { return _Weight; } set { OnWeightChanging(value); ReportPropertyChanging("Weight"); _Weight = StructuralObject.SetValidValue(value); ReportPropertyChanged("Weight"); OnWeightChanged(); } } private global::System.Int32 _Weight; partial void OnWeightChanging(global::System.Int32 value); partial void OnWeightChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 Sort { get { return _Sort; } set { OnSortChanging(value); ReportPropertyChanging("Sort"); _Sort = StructuralObject.SetValidValue(value); ReportPropertyChanged("Sort"); OnSortChanged(); } } private global::System.Int32 _Sort; partial void OnSortChanging(global::System.Int32 value); partial void OnSortChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Remark { get { return _Remark; } set { OnRemarkChanging(value); ReportPropertyChanging("Remark"); _Remark = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Remark"); OnRemarkChanged(); } } private global::System.String _Remark; partial void OnRemarkChanging(global::System.String value); partial void OnRemarkChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 Status { get { return _Status; } set { OnStatusChanging(value); ReportPropertyChanging("Status"); _Status = StructuralObject.SetValidValue(value); ReportPropertyChanged("Status"); OnStatusChanged(); } } private global::System.Int32 _Status; partial void OnStatusChanging(global::System.Int32 value); partial void OnStatusChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedTime { get { return _CreatedTime; } set { OnCreatedTimeChanging(value); ReportPropertyChanging("CreatedTime"); _CreatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedTime"); OnCreatedTimeChanged(); } } private Nullable _CreatedTime; partial void OnCreatedTimeChanging(Nullable value); partial void OnCreatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedTime { get { return _UpdatedTime; } set { OnUpdatedTimeChanging(value); ReportPropertyChanging("UpdatedTime"); _UpdatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedTime"); OnUpdatedTimeChanged(); } } private Nullable _UpdatedTime; partial void OnUpdatedTimeChanging(Nullable value); partial void OnUpdatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedUserId { get { return _CreatedUserId; } set { OnCreatedUserIdChanging(value); ReportPropertyChanging("CreatedUserId"); _CreatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedUserId"); OnCreatedUserIdChanged(); } } private Nullable _CreatedUserId; partial void OnCreatedUserIdChanging(Nullable value); partial void OnCreatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String CreatedUserName { get { return _CreatedUserName; } set { OnCreatedUserNameChanging(value); ReportPropertyChanging("CreatedUserName"); _CreatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("CreatedUserName"); OnCreatedUserNameChanged(); } } private global::System.String _CreatedUserName; partial void OnCreatedUserNameChanging(global::System.String value); partial void OnCreatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedUserId { get { return _UpdatedUserId; } set { OnUpdatedUserIdChanging(value); ReportPropertyChanging("UpdatedUserId"); _UpdatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedUserId"); OnUpdatedUserIdChanged(); } } private Nullable _UpdatedUserId; partial void OnUpdatedUserIdChanging(Nullable value); partial void OnUpdatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String UpdatedUserName { get { return _UpdatedUserName; } set { OnUpdatedUserNameChanging(value); ReportPropertyChanging("UpdatedUserName"); _UpdatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("UpdatedUserName"); OnUpdatedUserNameChanged(); } } private global::System.String _UpdatedUserName; partial void OnUpdatedUserNameChanging(global::System.String value); partial void OnUpdatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Boolean IsDeleted { get { return _IsDeleted; } set { OnIsDeletedChanging(value); ReportPropertyChanging("IsDeleted"); _IsDeleted = StructuralObject.SetValidValue(value); ReportPropertyChanged("IsDeleted"); OnIsDeletedChanged(); } } private global::System.Boolean _IsDeleted; partial void OnIsDeletedChanging(global::System.Boolean value); partial void OnIsDeletedChanged(); #endregion #region 导航属性 /// /// 没有元数据文档可用。 /// [XmlIgnoreAttribute()] [SoapIgnoreAttribute()] [DataMemberAttribute()] [EdmRelationshipNavigationPropertyAttribute("TEST", "sys_role_menu", "sys_role")] public EntityCollection sys_role { get { return ((IEntityWithRelationships)this).RelationshipManager.GetRelatedCollection("TEST.sys_role_menu", "sys_role"); } set { if ((value != null)) { ((IEntityWithRelationships)this).RelationshipManager.InitializeRelatedCollection("TEST.sys_role_menu", "sys_role", value); } } } #endregion } /// /// 没有元数据文档可用。 /// [EdmEntityTypeAttribute(NamespaceName="TEST", Name="sys_notice")] [Serializable()] [DataContractAttribute(IsReference=true)] public partial class sys_notice : EntityObject { #region 工厂方法 /// /// 创建新的 sys_notice 对象。 /// /// Id 属性的初始值。 /// Title 属性的初始值。 /// Content 属性的初始值。 /// Type 属性的初始值。 /// PublicUserId 属性的初始值。 /// PublicOrgId 属性的初始值。 /// Status 属性的初始值。 /// IsDeleted 属性的初始值。 public static sys_notice Createsys_notice(global::System.Int64 id, global::System.String title, global::System.String content, global::System.Int32 type, global::System.Int64 publicUserId, global::System.Int64 publicOrgId, global::System.Int32 status, global::System.Boolean isDeleted) { sys_notice sys_notice = new sys_notice(); sys_notice.Id = id; sys_notice.Title = title; sys_notice.Content = content; sys_notice.Type = type; sys_notice.PublicUserId = publicUserId; sys_notice.PublicOrgId = publicOrgId; sys_notice.Status = status; sys_notice.IsDeleted = isDeleted; return sys_notice; } #endregion #region 基元属性 /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 Id { get { return _Id; } set { if (_Id != value) { OnIdChanging(value); ReportPropertyChanging("Id"); _Id = StructuralObject.SetValidValue(value); ReportPropertyChanged("Id"); OnIdChanged(); } } } private global::System.Int64 _Id; partial void OnIdChanging(global::System.Int64 value); partial void OnIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.String Title { get { return _Title; } set { OnTitleChanging(value); ReportPropertyChanging("Title"); _Title = StructuralObject.SetValidValue(value, false); ReportPropertyChanged("Title"); OnTitleChanged(); } } private global::System.String _Title; partial void OnTitleChanging(global::System.String value); partial void OnTitleChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.String Content { get { return _Content; } set { OnContentChanging(value); ReportPropertyChanging("Content"); _Content = StructuralObject.SetValidValue(value, false); ReportPropertyChanged("Content"); OnContentChanged(); } } private global::System.String _Content; partial void OnContentChanging(global::System.String value); partial void OnContentChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 Type { get { return _Type; } set { OnTypeChanging(value); ReportPropertyChanging("Type"); _Type = StructuralObject.SetValidValue(value); ReportPropertyChanged("Type"); OnTypeChanged(); } } private global::System.Int32 _Type; partial void OnTypeChanging(global::System.Int32 value); partial void OnTypeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 PublicUserId { get { return _PublicUserId; } set { OnPublicUserIdChanging(value); ReportPropertyChanging("PublicUserId"); _PublicUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("PublicUserId"); OnPublicUserIdChanged(); } } private global::System.Int64 _PublicUserId; partial void OnPublicUserIdChanging(global::System.Int64 value); partial void OnPublicUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String PublicUserName { get { return _PublicUserName; } set { OnPublicUserNameChanging(value); ReportPropertyChanging("PublicUserName"); _PublicUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("PublicUserName"); OnPublicUserNameChanged(); } } private global::System.String _PublicUserName; partial void OnPublicUserNameChanging(global::System.String value); partial void OnPublicUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 PublicOrgId { get { return _PublicOrgId; } set { OnPublicOrgIdChanging(value); ReportPropertyChanging("PublicOrgId"); _PublicOrgId = StructuralObject.SetValidValue(value); ReportPropertyChanged("PublicOrgId"); OnPublicOrgIdChanged(); } } private global::System.Int64 _PublicOrgId; partial void OnPublicOrgIdChanging(global::System.Int64 value); partial void OnPublicOrgIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String PublicOrgName { get { return _PublicOrgName; } set { OnPublicOrgNameChanging(value); ReportPropertyChanging("PublicOrgName"); _PublicOrgName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("PublicOrgName"); OnPublicOrgNameChanged(); } } private global::System.String _PublicOrgName; partial void OnPublicOrgNameChanging(global::System.String value); partial void OnPublicOrgNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable PublicTime { get { return _PublicTime; } set { OnPublicTimeChanging(value); ReportPropertyChanging("PublicTime"); _PublicTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("PublicTime"); OnPublicTimeChanged(); } } private Nullable _PublicTime; partial void OnPublicTimeChanging(Nullable value); partial void OnPublicTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CancelTime { get { return _CancelTime; } set { OnCancelTimeChanging(value); ReportPropertyChanging("CancelTime"); _CancelTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("CancelTime"); OnCancelTimeChanged(); } } private Nullable _CancelTime; partial void OnCancelTimeChanging(Nullable value); partial void OnCancelTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 Status { get { return _Status; } set { OnStatusChanging(value); ReportPropertyChanging("Status"); _Status = StructuralObject.SetValidValue(value); ReportPropertyChanged("Status"); OnStatusChanged(); } } private global::System.Int32 _Status; partial void OnStatusChanging(global::System.Int32 value); partial void OnStatusChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedTime { get { return _CreatedTime; } set { OnCreatedTimeChanging(value); ReportPropertyChanging("CreatedTime"); _CreatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedTime"); OnCreatedTimeChanged(); } } private Nullable _CreatedTime; partial void OnCreatedTimeChanging(Nullable value); partial void OnCreatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedTime { get { return _UpdatedTime; } set { OnUpdatedTimeChanging(value); ReportPropertyChanging("UpdatedTime"); _UpdatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedTime"); OnUpdatedTimeChanged(); } } private Nullable _UpdatedTime; partial void OnUpdatedTimeChanging(Nullable value); partial void OnUpdatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedUserId { get { return _CreatedUserId; } set { OnCreatedUserIdChanging(value); ReportPropertyChanging("CreatedUserId"); _CreatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedUserId"); OnCreatedUserIdChanged(); } } private Nullable _CreatedUserId; partial void OnCreatedUserIdChanging(Nullable value); partial void OnCreatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String CreatedUserName { get { return _CreatedUserName; } set { OnCreatedUserNameChanging(value); ReportPropertyChanging("CreatedUserName"); _CreatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("CreatedUserName"); OnCreatedUserNameChanged(); } } private global::System.String _CreatedUserName; partial void OnCreatedUserNameChanging(global::System.String value); partial void OnCreatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedUserId { get { return _UpdatedUserId; } set { OnUpdatedUserIdChanging(value); ReportPropertyChanging("UpdatedUserId"); _UpdatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedUserId"); OnUpdatedUserIdChanged(); } } private Nullable _UpdatedUserId; partial void OnUpdatedUserIdChanging(Nullable value); partial void OnUpdatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String UpdatedUserName { get { return _UpdatedUserName; } set { OnUpdatedUserNameChanging(value); ReportPropertyChanging("UpdatedUserName"); _UpdatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("UpdatedUserName"); OnUpdatedUserNameChanged(); } } private global::System.String _UpdatedUserName; partial void OnUpdatedUserNameChanging(global::System.String value); partial void OnUpdatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Boolean IsDeleted { get { return _IsDeleted; } set { OnIsDeletedChanging(value); ReportPropertyChanging("IsDeleted"); _IsDeleted = StructuralObject.SetValidValue(value); ReportPropertyChanged("IsDeleted"); OnIsDeletedChanged(); } } private global::System.Boolean _IsDeleted; partial void OnIsDeletedChanging(global::System.Boolean value); partial void OnIsDeletedChanged(); #endregion } /// /// 没有元数据文档可用。 /// [EdmEntityTypeAttribute(NamespaceName="TEST", Name="sys_notice_user")] [Serializable()] [DataContractAttribute(IsReference=true)] public partial class sys_notice_user : EntityObject { #region 工厂方法 /// /// 创建新的 sys_notice_user 对象。 /// /// NoticeId 属性的初始值。 /// UserId 属性的初始值。 /// ReadStatus 属性的初始值。 public static sys_notice_user Createsys_notice_user(global::System.Int64 noticeId, global::System.Int64 userId, global::System.Int32 readStatus) { sys_notice_user sys_notice_user = new sys_notice_user(); sys_notice_user.NoticeId = noticeId; sys_notice_user.UserId = userId; sys_notice_user.ReadStatus = readStatus; return sys_notice_user; } #endregion #region 基元属性 /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 NoticeId { get { return _NoticeId; } set { if (_NoticeId != value) { OnNoticeIdChanging(value); ReportPropertyChanging("NoticeId"); _NoticeId = StructuralObject.SetValidValue(value); ReportPropertyChanged("NoticeId"); OnNoticeIdChanged(); } } } private global::System.Int64 _NoticeId; partial void OnNoticeIdChanging(global::System.Int64 value); partial void OnNoticeIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 UserId { get { return _UserId; } set { if (_UserId != value) { OnUserIdChanging(value); ReportPropertyChanging("UserId"); _UserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("UserId"); OnUserIdChanged(); } } } private global::System.Int64 _UserId; partial void OnUserIdChanging(global::System.Int64 value); partial void OnUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable ReadTime { get { return _ReadTime; } set { OnReadTimeChanging(value); ReportPropertyChanging("ReadTime"); _ReadTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("ReadTime"); OnReadTimeChanged(); } } private Nullable _ReadTime; partial void OnReadTimeChanging(Nullable value); partial void OnReadTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 ReadStatus { get { return _ReadStatus; } set { OnReadStatusChanging(value); ReportPropertyChanging("ReadStatus"); _ReadStatus = StructuralObject.SetValidValue(value); ReportPropertyChanged("ReadStatus"); OnReadStatusChanged(); } } private global::System.Int32 _ReadStatus; partial void OnReadStatusChanging(global::System.Int32 value); partial void OnReadStatusChanged(); #endregion } /// /// 没有元数据文档可用。 /// [EdmEntityTypeAttribute(NamespaceName="TEST", Name="sys_org")] [Serializable()] [DataContractAttribute(IsReference=true)] public partial class sys_org : EntityObject { #region 工厂方法 /// /// 创建新的 sys_org 对象。 /// /// Id 属性的初始值。 /// Pid 属性的初始值。 /// Name 属性的初始值。 /// Code 属性的初始值。 /// Sort 属性的初始值。 /// Status 属性的初始值。 /// IsDeleted 属性的初始值。 public static sys_org Createsys_org(global::System.Int64 id, global::System.Int64 pid, global::System.String name, global::System.String code, global::System.Int32 sort, global::System.Int32 status, global::System.Boolean isDeleted) { sys_org sys_org = new sys_org(); sys_org.Id = id; sys_org.Pid = pid; sys_org.Name = name; sys_org.Code = code; sys_org.Sort = sort; sys_org.Status = status; sys_org.IsDeleted = isDeleted; return sys_org; } #endregion #region 基元属性 /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 Id { get { return _Id; } set { if (_Id != value) { OnIdChanging(value); ReportPropertyChanging("Id"); _Id = StructuralObject.SetValidValue(value); ReportPropertyChanged("Id"); OnIdChanged(); } } } private global::System.Int64 _Id; partial void OnIdChanging(global::System.Int64 value); partial void OnIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 Pid { get { return _Pid; } set { OnPidChanging(value); ReportPropertyChanging("Pid"); _Pid = StructuralObject.SetValidValue(value); ReportPropertyChanged("Pid"); OnPidChanged(); } } private global::System.Int64 _Pid; partial void OnPidChanging(global::System.Int64 value); partial void OnPidChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Pids { get { return _Pids; } set { OnPidsChanging(value); ReportPropertyChanging("Pids"); _Pids = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Pids"); OnPidsChanged(); } } private global::System.String _Pids; partial void OnPidsChanging(global::System.String value); partial void OnPidsChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.String Name { get { return _Name; } set { OnNameChanging(value); ReportPropertyChanging("Name"); _Name = StructuralObject.SetValidValue(value, false); ReportPropertyChanged("Name"); OnNameChanged(); } } private global::System.String _Name; partial void OnNameChanging(global::System.String value); partial void OnNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.String Code { get { return _Code; } set { OnCodeChanging(value); ReportPropertyChanging("Code"); _Code = StructuralObject.SetValidValue(value, false); ReportPropertyChanged("Code"); OnCodeChanged(); } } private global::System.String _Code; partial void OnCodeChanging(global::System.String value); partial void OnCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Contacts { get { return _Contacts; } set { OnContactsChanging(value); ReportPropertyChanging("Contacts"); _Contacts = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Contacts"); OnContactsChanged(); } } private global::System.String _Contacts; partial void OnContactsChanging(global::System.String value); partial void OnContactsChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Tel { get { return _Tel; } set { OnTelChanging(value); ReportPropertyChanging("Tel"); _Tel = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Tel"); OnTelChanged(); } } private global::System.String _Tel; partial void OnTelChanging(global::System.String value); partial void OnTelChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 Sort { get { return _Sort; } set { OnSortChanging(value); ReportPropertyChanging("Sort"); _Sort = StructuralObject.SetValidValue(value); ReportPropertyChanged("Sort"); OnSortChanged(); } } private global::System.Int32 _Sort; partial void OnSortChanging(global::System.Int32 value); partial void OnSortChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Remark { get { return _Remark; } set { OnRemarkChanging(value); ReportPropertyChanging("Remark"); _Remark = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Remark"); OnRemarkChanged(); } } private global::System.String _Remark; partial void OnRemarkChanging(global::System.String value); partial void OnRemarkChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 Status { get { return _Status; } set { OnStatusChanging(value); ReportPropertyChanging("Status"); _Status = StructuralObject.SetValidValue(value); ReportPropertyChanged("Status"); OnStatusChanged(); } } private global::System.Int32 _Status; partial void OnStatusChanging(global::System.Int32 value); partial void OnStatusChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String OrgType { get { return _OrgType; } set { OnOrgTypeChanging(value); ReportPropertyChanging("OrgType"); _OrgType = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("OrgType"); OnOrgTypeChanged(); } } private global::System.String _OrgType; partial void OnOrgTypeChanging(global::System.String value); partial void OnOrgTypeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedTime { get { return _CreatedTime; } set { OnCreatedTimeChanging(value); ReportPropertyChanging("CreatedTime"); _CreatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedTime"); OnCreatedTimeChanged(); } } private Nullable _CreatedTime; partial void OnCreatedTimeChanging(Nullable value); partial void OnCreatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedTime { get { return _UpdatedTime; } set { OnUpdatedTimeChanging(value); ReportPropertyChanging("UpdatedTime"); _UpdatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedTime"); OnUpdatedTimeChanged(); } } private Nullable _UpdatedTime; partial void OnUpdatedTimeChanging(Nullable value); partial void OnUpdatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedUserId { get { return _CreatedUserId; } set { OnCreatedUserIdChanging(value); ReportPropertyChanging("CreatedUserId"); _CreatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedUserId"); OnCreatedUserIdChanged(); } } private Nullable _CreatedUserId; partial void OnCreatedUserIdChanging(Nullable value); partial void OnCreatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String CreatedUserName { get { return _CreatedUserName; } set { OnCreatedUserNameChanging(value); ReportPropertyChanging("CreatedUserName"); _CreatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("CreatedUserName"); OnCreatedUserNameChanged(); } } private global::System.String _CreatedUserName; partial void OnCreatedUserNameChanging(global::System.String value); partial void OnCreatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedUserId { get { return _UpdatedUserId; } set { OnUpdatedUserIdChanging(value); ReportPropertyChanging("UpdatedUserId"); _UpdatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedUserId"); OnUpdatedUserIdChanged(); } } private Nullable _UpdatedUserId; partial void OnUpdatedUserIdChanging(Nullable value); partial void OnUpdatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String UpdatedUserName { get { return _UpdatedUserName; } set { OnUpdatedUserNameChanging(value); ReportPropertyChanging("UpdatedUserName"); _UpdatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("UpdatedUserName"); OnUpdatedUserNameChanged(); } } private global::System.String _UpdatedUserName; partial void OnUpdatedUserNameChanging(global::System.String value); partial void OnUpdatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Boolean IsDeleted { get { return _IsDeleted; } set { OnIsDeletedChanging(value); ReportPropertyChanging("IsDeleted"); _IsDeleted = StructuralObject.SetValidValue(value); ReportPropertyChanged("IsDeleted"); OnIsDeletedChanged(); } } private global::System.Boolean _IsDeleted; partial void OnIsDeletedChanging(global::System.Boolean value); partial void OnIsDeletedChanged(); #endregion #region 导航属性 /// /// 没有元数据文档可用。 /// [XmlIgnoreAttribute()] [SoapIgnoreAttribute()] [DataMemberAttribute()] [EdmRelationshipNavigationPropertyAttribute("TEST", "FK_sys_emp_ext_org_pos_sys_org_SysOrgId", "sys_emp_ext_org_pos")] public EntityCollection sys_emp_ext_org_pos { get { return ((IEntityWithRelationships)this).RelationshipManager.GetRelatedCollection("TEST.FK_sys_emp_ext_org_pos_sys_org_SysOrgId", "sys_emp_ext_org_pos"); } set { if ((value != null)) { ((IEntityWithRelationships)this).RelationshipManager.InitializeRelatedCollection("TEST.FK_sys_emp_ext_org_pos_sys_org_SysOrgId", "sys_emp_ext_org_pos", value); } } } /// /// 没有元数据文档可用。 /// [XmlIgnoreAttribute()] [SoapIgnoreAttribute()] [DataMemberAttribute()] [EdmRelationshipNavigationPropertyAttribute("TEST", "sys_role_data_scope", "sys_role")] public EntityCollection sys_role { get { return ((IEntityWithRelationships)this).RelationshipManager.GetRelatedCollection("TEST.sys_role_data_scope", "sys_role"); } set { if ((value != null)) { ((IEntityWithRelationships)this).RelationshipManager.InitializeRelatedCollection("TEST.sys_role_data_scope", "sys_role", value); } } } /// /// 没有元数据文档可用。 /// [XmlIgnoreAttribute()] [SoapIgnoreAttribute()] [DataMemberAttribute()] [EdmRelationshipNavigationPropertyAttribute("TEST", "sys_user_data_scope", "sys_user")] public EntityCollection sys_user { get { return ((IEntityWithRelationships)this).RelationshipManager.GetRelatedCollection("TEST.sys_user_data_scope", "sys_user"); } set { if ((value != null)) { ((IEntityWithRelationships)this).RelationshipManager.InitializeRelatedCollection("TEST.sys_user_data_scope", "sys_user", value); } } } #endregion } /// /// 没有元数据文档可用。 /// [EdmEntityTypeAttribute(NamespaceName="TEST", Name="sys_pos")] [Serializable()] [DataContractAttribute(IsReference=true)] public partial class sys_pos : EntityObject { #region 工厂方法 /// /// 创建新的 sys_pos 对象。 /// /// Id 属性的初始值。 /// Name 属性的初始值。 /// Code 属性的初始值。 /// Sort 属性的初始值。 /// Status 属性的初始值。 /// IsDeleted 属性的初始值。 public static sys_pos Createsys_pos(global::System.Int64 id, global::System.String name, global::System.String code, global::System.Int32 sort, global::System.Int32 status, global::System.Boolean isDeleted) { sys_pos sys_pos = new sys_pos(); sys_pos.Id = id; sys_pos.Name = name; sys_pos.Code = code; sys_pos.Sort = sort; sys_pos.Status = status; sys_pos.IsDeleted = isDeleted; return sys_pos; } #endregion #region 基元属性 /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 Id { get { return _Id; } set { if (_Id != value) { OnIdChanging(value); ReportPropertyChanging("Id"); _Id = StructuralObject.SetValidValue(value); ReportPropertyChanged("Id"); OnIdChanged(); } } } private global::System.Int64 _Id; partial void OnIdChanging(global::System.Int64 value); partial void OnIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.String Name { get { return _Name; } set { OnNameChanging(value); ReportPropertyChanging("Name"); _Name = StructuralObject.SetValidValue(value, false); ReportPropertyChanged("Name"); OnNameChanged(); } } private global::System.String _Name; partial void OnNameChanging(global::System.String value); partial void OnNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.String Code { get { return _Code; } set { OnCodeChanging(value); ReportPropertyChanging("Code"); _Code = StructuralObject.SetValidValue(value, false); ReportPropertyChanged("Code"); OnCodeChanged(); } } private global::System.String _Code; partial void OnCodeChanging(global::System.String value); partial void OnCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 Sort { get { return _Sort; } set { OnSortChanging(value); ReportPropertyChanging("Sort"); _Sort = StructuralObject.SetValidValue(value); ReportPropertyChanged("Sort"); OnSortChanged(); } } private global::System.Int32 _Sort; partial void OnSortChanging(global::System.Int32 value); partial void OnSortChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Remark { get { return _Remark; } set { OnRemarkChanging(value); ReportPropertyChanging("Remark"); _Remark = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Remark"); OnRemarkChanged(); } } private global::System.String _Remark; partial void OnRemarkChanging(global::System.String value); partial void OnRemarkChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 Status { get { return _Status; } set { OnStatusChanging(value); ReportPropertyChanging("Status"); _Status = StructuralObject.SetValidValue(value); ReportPropertyChanged("Status"); OnStatusChanged(); } } private global::System.Int32 _Status; partial void OnStatusChanging(global::System.Int32 value); partial void OnStatusChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedTime { get { return _CreatedTime; } set { OnCreatedTimeChanging(value); ReportPropertyChanging("CreatedTime"); _CreatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedTime"); OnCreatedTimeChanged(); } } private Nullable _CreatedTime; partial void OnCreatedTimeChanging(Nullable value); partial void OnCreatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedTime { get { return _UpdatedTime; } set { OnUpdatedTimeChanging(value); ReportPropertyChanging("UpdatedTime"); _UpdatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedTime"); OnUpdatedTimeChanged(); } } private Nullable _UpdatedTime; partial void OnUpdatedTimeChanging(Nullable value); partial void OnUpdatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedUserId { get { return _CreatedUserId; } set { OnCreatedUserIdChanging(value); ReportPropertyChanging("CreatedUserId"); _CreatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedUserId"); OnCreatedUserIdChanged(); } } private Nullable _CreatedUserId; partial void OnCreatedUserIdChanging(Nullable value); partial void OnCreatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String CreatedUserName { get { return _CreatedUserName; } set { OnCreatedUserNameChanging(value); ReportPropertyChanging("CreatedUserName"); _CreatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("CreatedUserName"); OnCreatedUserNameChanged(); } } private global::System.String _CreatedUserName; partial void OnCreatedUserNameChanging(global::System.String value); partial void OnCreatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedUserId { get { return _UpdatedUserId; } set { OnUpdatedUserIdChanging(value); ReportPropertyChanging("UpdatedUserId"); _UpdatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedUserId"); OnUpdatedUserIdChanged(); } } private Nullable _UpdatedUserId; partial void OnUpdatedUserIdChanging(Nullable value); partial void OnUpdatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String UpdatedUserName { get { return _UpdatedUserName; } set { OnUpdatedUserNameChanging(value); ReportPropertyChanging("UpdatedUserName"); _UpdatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("UpdatedUserName"); OnUpdatedUserNameChanged(); } } private global::System.String _UpdatedUserName; partial void OnUpdatedUserNameChanging(global::System.String value); partial void OnUpdatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Boolean IsDeleted { get { return _IsDeleted; } set { OnIsDeletedChanging(value); ReportPropertyChanging("IsDeleted"); _IsDeleted = StructuralObject.SetValidValue(value); ReportPropertyChanged("IsDeleted"); OnIsDeletedChanged(); } } private global::System.Boolean _IsDeleted; partial void OnIsDeletedChanging(global::System.Boolean value); partial void OnIsDeletedChanged(); #endregion #region 导航属性 /// /// 没有元数据文档可用。 /// [XmlIgnoreAttribute()] [SoapIgnoreAttribute()] [DataMemberAttribute()] [EdmRelationshipNavigationPropertyAttribute("TEST", "FK_sys_emp_ext_org_pos_sys_pos_SysPosId", "sys_emp_ext_org_pos")] public EntityCollection sys_emp_ext_org_pos { get { return ((IEntityWithRelationships)this).RelationshipManager.GetRelatedCollection("TEST.FK_sys_emp_ext_org_pos_sys_pos_SysPosId", "sys_emp_ext_org_pos"); } set { if ((value != null)) { ((IEntityWithRelationships)this).RelationshipManager.InitializeRelatedCollection("TEST.FK_sys_emp_ext_org_pos_sys_pos_SysPosId", "sys_emp_ext_org_pos", value); } } } /// /// 没有元数据文档可用。 /// [XmlIgnoreAttribute()] [SoapIgnoreAttribute()] [DataMemberAttribute()] [EdmRelationshipNavigationPropertyAttribute("TEST", "sys_emp_pos", "sys_emp")] public EntityCollection sys_emp { get { return ((IEntityWithRelationships)this).RelationshipManager.GetRelatedCollection("TEST.sys_emp_pos", "sys_emp"); } set { if ((value != null)) { ((IEntityWithRelationships)this).RelationshipManager.InitializeRelatedCollection("TEST.sys_emp_pos", "sys_emp", value); } } } #endregion } /// /// 没有元数据文档可用。 /// [EdmEntityTypeAttribute(NamespaceName="TEST", Name="sys_role")] [Serializable()] [DataContractAttribute(IsReference=true)] public partial class sys_role : EntityObject { #region 工厂方法 /// /// 创建新的 sys_role 对象。 /// /// Id 属性的初始值。 /// Name 属性的初始值。 /// Code 属性的初始值。 /// Sort 属性的初始值。 /// DataScopeType 属性的初始值。 /// Status 属性的初始值。 /// RoleType 属性的初始值。 /// IsDeleted 属性的初始值。 public static sys_role Createsys_role(global::System.Int64 id, global::System.String name, global::System.String code, global::System.Int32 sort, global::System.Int32 dataScopeType, global::System.Int32 status, global::System.Int32 roleType, global::System.Boolean isDeleted) { sys_role sys_role = new sys_role(); sys_role.Id = id; sys_role.Name = name; sys_role.Code = code; sys_role.Sort = sort; sys_role.DataScopeType = dataScopeType; sys_role.Status = status; sys_role.RoleType = roleType; sys_role.IsDeleted = isDeleted; return sys_role; } #endregion #region 基元属性 /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 Id { get { return _Id; } set { if (_Id != value) { OnIdChanging(value); ReportPropertyChanging("Id"); _Id = StructuralObject.SetValidValue(value); ReportPropertyChanged("Id"); OnIdChanged(); } } } private global::System.Int64 _Id; partial void OnIdChanging(global::System.Int64 value); partial void OnIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.String Name { get { return _Name; } set { OnNameChanging(value); ReportPropertyChanging("Name"); _Name = StructuralObject.SetValidValue(value, false); ReportPropertyChanged("Name"); OnNameChanged(); } } private global::System.String _Name; partial void OnNameChanging(global::System.String value); partial void OnNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.String Code { get { return _Code; } set { OnCodeChanging(value); ReportPropertyChanging("Code"); _Code = StructuralObject.SetValidValue(value, false); ReportPropertyChanged("Code"); OnCodeChanged(); } } private global::System.String _Code; partial void OnCodeChanging(global::System.String value); partial void OnCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 Sort { get { return _Sort; } set { OnSortChanging(value); ReportPropertyChanging("Sort"); _Sort = StructuralObject.SetValidValue(value); ReportPropertyChanged("Sort"); OnSortChanged(); } } private global::System.Int32 _Sort; partial void OnSortChanging(global::System.Int32 value); partial void OnSortChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 DataScopeType { get { return _DataScopeType; } set { OnDataScopeTypeChanging(value); ReportPropertyChanging("DataScopeType"); _DataScopeType = StructuralObject.SetValidValue(value); ReportPropertyChanged("DataScopeType"); OnDataScopeTypeChanged(); } } private global::System.Int32 _DataScopeType; partial void OnDataScopeTypeChanging(global::System.Int32 value); partial void OnDataScopeTypeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Remark { get { return _Remark; } set { OnRemarkChanging(value); ReportPropertyChanging("Remark"); _Remark = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Remark"); OnRemarkChanged(); } } private global::System.String _Remark; partial void OnRemarkChanging(global::System.String value); partial void OnRemarkChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 Status { get { return _Status; } set { OnStatusChanging(value); ReportPropertyChanging("Status"); _Status = StructuralObject.SetValidValue(value); ReportPropertyChanged("Status"); OnStatusChanged(); } } private global::System.Int32 _Status; partial void OnStatusChanging(global::System.Int32 value); partial void OnStatusChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 RoleType { get { return _RoleType; } set { OnRoleTypeChanging(value); ReportPropertyChanging("RoleType"); _RoleType = StructuralObject.SetValidValue(value); ReportPropertyChanged("RoleType"); OnRoleTypeChanged(); } } private global::System.Int32 _RoleType; partial void OnRoleTypeChanging(global::System.Int32 value); partial void OnRoleTypeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedTime { get { return _CreatedTime; } set { OnCreatedTimeChanging(value); ReportPropertyChanging("CreatedTime"); _CreatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedTime"); OnCreatedTimeChanged(); } } private Nullable _CreatedTime; partial void OnCreatedTimeChanging(Nullable value); partial void OnCreatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedTime { get { return _UpdatedTime; } set { OnUpdatedTimeChanging(value); ReportPropertyChanging("UpdatedTime"); _UpdatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedTime"); OnUpdatedTimeChanged(); } } private Nullable _UpdatedTime; partial void OnUpdatedTimeChanging(Nullable value); partial void OnUpdatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedUserId { get { return _CreatedUserId; } set { OnCreatedUserIdChanging(value); ReportPropertyChanging("CreatedUserId"); _CreatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedUserId"); OnCreatedUserIdChanged(); } } private Nullable _CreatedUserId; partial void OnCreatedUserIdChanging(Nullable value); partial void OnCreatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String CreatedUserName { get { return _CreatedUserName; } set { OnCreatedUserNameChanging(value); ReportPropertyChanging("CreatedUserName"); _CreatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("CreatedUserName"); OnCreatedUserNameChanged(); } } private global::System.String _CreatedUserName; partial void OnCreatedUserNameChanging(global::System.String value); partial void OnCreatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedUserId { get { return _UpdatedUserId; } set { OnUpdatedUserIdChanging(value); ReportPropertyChanging("UpdatedUserId"); _UpdatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedUserId"); OnUpdatedUserIdChanged(); } } private Nullable _UpdatedUserId; partial void OnUpdatedUserIdChanging(Nullable value); partial void OnUpdatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String UpdatedUserName { get { return _UpdatedUserName; } set { OnUpdatedUserNameChanging(value); ReportPropertyChanging("UpdatedUserName"); _UpdatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("UpdatedUserName"); OnUpdatedUserNameChanged(); } } private global::System.String _UpdatedUserName; partial void OnUpdatedUserNameChanging(global::System.String value); partial void OnUpdatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Boolean IsDeleted { get { return _IsDeleted; } set { OnIsDeletedChanging(value); ReportPropertyChanging("IsDeleted"); _IsDeleted = StructuralObject.SetValidValue(value); ReportPropertyChanged("IsDeleted"); OnIsDeletedChanged(); } } private global::System.Boolean _IsDeleted; partial void OnIsDeletedChanging(global::System.Boolean value); partial void OnIsDeletedChanged(); #endregion #region 导航属性 /// /// 没有元数据文档可用。 /// [XmlIgnoreAttribute()] [SoapIgnoreAttribute()] [DataMemberAttribute()] [EdmRelationshipNavigationPropertyAttribute("TEST", "sys_role_data_scope", "sys_org")] public EntityCollection sys_org { get { return ((IEntityWithRelationships)this).RelationshipManager.GetRelatedCollection("TEST.sys_role_data_scope", "sys_org"); } set { if ((value != null)) { ((IEntityWithRelationships)this).RelationshipManager.InitializeRelatedCollection("TEST.sys_role_data_scope", "sys_org", value); } } } /// /// 没有元数据文档可用。 /// [XmlIgnoreAttribute()] [SoapIgnoreAttribute()] [DataMemberAttribute()] [EdmRelationshipNavigationPropertyAttribute("TEST", "sys_role_menu", "sys_menu")] public EntityCollection sys_menu { get { return ((IEntityWithRelationships)this).RelationshipManager.GetRelatedCollection("TEST.sys_role_menu", "sys_menu"); } set { if ((value != null)) { ((IEntityWithRelationships)this).RelationshipManager.InitializeRelatedCollection("TEST.sys_role_menu", "sys_menu", value); } } } /// /// 没有元数据文档可用。 /// [XmlIgnoreAttribute()] [SoapIgnoreAttribute()] [DataMemberAttribute()] [EdmRelationshipNavigationPropertyAttribute("TEST", "sys_user_role", "sys_user")] public EntityCollection sys_user { get { return ((IEntityWithRelationships)this).RelationshipManager.GetRelatedCollection("TEST.sys_user_role", "sys_user"); } set { if ((value != null)) { ((IEntityWithRelationships)this).RelationshipManager.InitializeRelatedCollection("TEST.sys_user_role", "sys_user", value); } } } #endregion } /// /// 没有元数据文档可用。 /// [EdmEntityTypeAttribute(NamespaceName="TEST", Name="sys_timer")] [Serializable()] [DataContractAttribute(IsReference=true)] public partial class sys_timer : EntityObject { #region 工厂方法 /// /// 创建新的 sys_timer 对象。 /// /// Id 属性的初始值。 /// JobName 属性的初始值。 /// DoOnce 属性的初始值。 /// StartNow 属性的初始值。 /// ExecuteType 属性的初始值。 /// TimerType 属性的初始值。 /// RequestType 属性的初始值。 /// IsDeleted 属性的初始值。 public static sys_timer Createsys_timer(global::System.Int64 id, global::System.String jobName, global::System.Boolean doOnce, global::System.Boolean startNow, global::System.Int32 executeType, global::System.Int32 timerType, global::System.Int32 requestType, global::System.Boolean isDeleted) { sys_timer sys_timer = new sys_timer(); sys_timer.Id = id; sys_timer.JobName = jobName; sys_timer.DoOnce = doOnce; sys_timer.StartNow = startNow; sys_timer.ExecuteType = executeType; sys_timer.TimerType = timerType; sys_timer.RequestType = requestType; sys_timer.IsDeleted = isDeleted; return sys_timer; } #endregion #region 基元属性 /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 Id { get { return _Id; } set { if (_Id != value) { OnIdChanging(value); ReportPropertyChanging("Id"); _Id = StructuralObject.SetValidValue(value); ReportPropertyChanged("Id"); OnIdChanged(); } } } private global::System.Int64 _Id; partial void OnIdChanging(global::System.Int64 value); partial void OnIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.String JobName { get { return _JobName; } set { OnJobNameChanging(value); ReportPropertyChanging("JobName"); _JobName = StructuralObject.SetValidValue(value, false); ReportPropertyChanged("JobName"); OnJobNameChanged(); } } private global::System.String _JobName; partial void OnJobNameChanging(global::System.String value); partial void OnJobNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Boolean DoOnce { get { return _DoOnce; } set { OnDoOnceChanging(value); ReportPropertyChanging("DoOnce"); _DoOnce = StructuralObject.SetValidValue(value); ReportPropertyChanged("DoOnce"); OnDoOnceChanged(); } } private global::System.Boolean _DoOnce; partial void OnDoOnceChanging(global::System.Boolean value); partial void OnDoOnceChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Boolean StartNow { get { return _StartNow; } set { OnStartNowChanging(value); ReportPropertyChanging("StartNow"); _StartNow = StructuralObject.SetValidValue(value); ReportPropertyChanged("StartNow"); OnStartNowChanged(); } } private global::System.Boolean _StartNow; partial void OnStartNowChanging(global::System.Boolean value); partial void OnStartNowChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 ExecuteType { get { return _ExecuteType; } set { OnExecuteTypeChanging(value); ReportPropertyChanging("ExecuteType"); _ExecuteType = StructuralObject.SetValidValue(value); ReportPropertyChanged("ExecuteType"); OnExecuteTypeChanged(); } } private global::System.Int32 _ExecuteType; partial void OnExecuteTypeChanging(global::System.Int32 value); partial void OnExecuteTypeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable Interval { get { return _Interval; } set { OnIntervalChanging(value); ReportPropertyChanging("Interval"); _Interval = StructuralObject.SetValidValue(value); ReportPropertyChanged("Interval"); OnIntervalChanged(); } } private Nullable _Interval; partial void OnIntervalChanging(Nullable value); partial void OnIntervalChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Cron { get { return _Cron; } set { OnCronChanging(value); ReportPropertyChanging("Cron"); _Cron = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Cron"); OnCronChanged(); } } private global::System.String _Cron; partial void OnCronChanging(global::System.String value); partial void OnCronChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 TimerType { get { return _TimerType; } set { OnTimerTypeChanging(value); ReportPropertyChanging("TimerType"); _TimerType = StructuralObject.SetValidValue(value); ReportPropertyChanged("TimerType"); OnTimerTypeChanged(); } } private global::System.Int32 _TimerType; partial void OnTimerTypeChanging(global::System.Int32 value); partial void OnTimerTypeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String RequestUrl { get { return _RequestUrl; } set { OnRequestUrlChanging(value); ReportPropertyChanging("RequestUrl"); _RequestUrl = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("RequestUrl"); OnRequestUrlChanged(); } } private global::System.String _RequestUrl; partial void OnRequestUrlChanging(global::System.String value); partial void OnRequestUrlChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String RequestParameters { get { return _RequestParameters; } set { OnRequestParametersChanging(value); ReportPropertyChanging("RequestParameters"); _RequestParameters = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("RequestParameters"); OnRequestParametersChanged(); } } private global::System.String _RequestParameters; partial void OnRequestParametersChanging(global::System.String value); partial void OnRequestParametersChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Headers { get { return _Headers; } set { OnHeadersChanging(value); ReportPropertyChanging("Headers"); _Headers = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Headers"); OnHeadersChanged(); } } private global::System.String _Headers; partial void OnHeadersChanging(global::System.String value); partial void OnHeadersChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 RequestType { get { return _RequestType; } set { OnRequestTypeChanging(value); ReportPropertyChanging("RequestType"); _RequestType = StructuralObject.SetValidValue(value); ReportPropertyChanged("RequestType"); OnRequestTypeChanged(); } } private global::System.Int32 _RequestType; partial void OnRequestTypeChanging(global::System.Int32 value); partial void OnRequestTypeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Remark { get { return _Remark; } set { OnRemarkChanging(value); ReportPropertyChanging("Remark"); _Remark = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Remark"); OnRemarkChanged(); } } private global::System.String _Remark; partial void OnRemarkChanging(global::System.String value); partial void OnRemarkChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedTime { get { return _CreatedTime; } set { OnCreatedTimeChanging(value); ReportPropertyChanging("CreatedTime"); _CreatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedTime"); OnCreatedTimeChanged(); } } private Nullable _CreatedTime; partial void OnCreatedTimeChanging(Nullable value); partial void OnCreatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedTime { get { return _UpdatedTime; } set { OnUpdatedTimeChanging(value); ReportPropertyChanging("UpdatedTime"); _UpdatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedTime"); OnUpdatedTimeChanged(); } } private Nullable _UpdatedTime; partial void OnUpdatedTimeChanging(Nullable value); partial void OnUpdatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedUserId { get { return _CreatedUserId; } set { OnCreatedUserIdChanging(value); ReportPropertyChanging("CreatedUserId"); _CreatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedUserId"); OnCreatedUserIdChanged(); } } private Nullable _CreatedUserId; partial void OnCreatedUserIdChanging(Nullable value); partial void OnCreatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String CreatedUserName { get { return _CreatedUserName; } set { OnCreatedUserNameChanging(value); ReportPropertyChanging("CreatedUserName"); _CreatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("CreatedUserName"); OnCreatedUserNameChanged(); } } private global::System.String _CreatedUserName; partial void OnCreatedUserNameChanging(global::System.String value); partial void OnCreatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedUserId { get { return _UpdatedUserId; } set { OnUpdatedUserIdChanging(value); ReportPropertyChanging("UpdatedUserId"); _UpdatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedUserId"); OnUpdatedUserIdChanged(); } } private Nullable _UpdatedUserId; partial void OnUpdatedUserIdChanging(Nullable value); partial void OnUpdatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String UpdatedUserName { get { return _UpdatedUserName; } set { OnUpdatedUserNameChanging(value); ReportPropertyChanging("UpdatedUserName"); _UpdatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("UpdatedUserName"); OnUpdatedUserNameChanged(); } } private global::System.String _UpdatedUserName; partial void OnUpdatedUserNameChanging(global::System.String value); partial void OnUpdatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Boolean IsDeleted { get { return _IsDeleted; } set { OnIsDeletedChanging(value); ReportPropertyChanging("IsDeleted"); _IsDeleted = StructuralObject.SetValidValue(value); ReportPropertyChanged("IsDeleted"); OnIsDeletedChanged(); } } private global::System.Boolean _IsDeleted; partial void OnIsDeletedChanging(global::System.Boolean value); partial void OnIsDeletedChanged(); #endregion } /// /// 没有元数据文档可用。 /// [EdmEntityTypeAttribute(NamespaceName="TEST", Name="sys_user")] [Serializable()] [DataContractAttribute(IsReference=true)] public partial class sys_user : EntityObject { #region 工厂方法 /// /// 创建新的 sys_user 对象。 /// /// Id 属性的初始值。 /// Account 属性的初始值。 /// Password 属性的初始值。 /// Sex 属性的初始值。 /// AdminType 属性的初始值。 /// Status 属性的初始值。 /// IsDeleted 属性的初始值。 public static sys_user Createsys_user(global::System.Int64 id, global::System.String account, global::System.String password, global::System.Int32 sex, global::System.Int32 adminType, global::System.Int32 status, global::System.Boolean isDeleted) { sys_user sys_user = new sys_user(); sys_user.Id = id; sys_user.Account = account; sys_user.Password = password; sys_user.Sex = sex; sys_user.AdminType = adminType; sys_user.Status = status; sys_user.IsDeleted = isDeleted; return sys_user; } #endregion #region 基元属性 /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 Id { get { return _Id; } set { if (_Id != value) { OnIdChanging(value); ReportPropertyChanging("Id"); _Id = StructuralObject.SetValidValue(value); ReportPropertyChanged("Id"); OnIdChanged(); } } } private global::System.Int64 _Id; partial void OnIdChanging(global::System.Int64 value); partial void OnIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.String Account { get { return _Account; } set { OnAccountChanging(value); ReportPropertyChanging("Account"); _Account = StructuralObject.SetValidValue(value, false); ReportPropertyChanged("Account"); OnAccountChanged(); } } private global::System.String _Account; partial void OnAccountChanging(global::System.String value); partial void OnAccountChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.String Password { get { return _Password; } set { OnPasswordChanging(value); ReportPropertyChanging("Password"); _Password = StructuralObject.SetValidValue(value, false); ReportPropertyChanged("Password"); OnPasswordChanged(); } } private global::System.String _Password; partial void OnPasswordChanging(global::System.String value); partial void OnPasswordChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String NickName { get { return _NickName; } set { OnNickNameChanging(value); ReportPropertyChanging("NickName"); _NickName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("NickName"); OnNickNameChanged(); } } private global::System.String _NickName; partial void OnNickNameChanging(global::System.String value); partial void OnNickNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Name { get { return _Name; } set { OnNameChanging(value); ReportPropertyChanging("Name"); _Name = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Name"); OnNameChanged(); } } private global::System.String _Name; partial void OnNameChanging(global::System.String value); partial void OnNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Avatar { get { return _Avatar; } set { OnAvatarChanging(value); ReportPropertyChanging("Avatar"); _Avatar = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Avatar"); OnAvatarChanged(); } } private global::System.String _Avatar; partial void OnAvatarChanging(global::System.String value); partial void OnAvatarChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable Birthday { get { return _Birthday; } set { OnBirthdayChanging(value); ReportPropertyChanging("Birthday"); _Birthday = StructuralObject.SetValidValue(value); ReportPropertyChanged("Birthday"); OnBirthdayChanged(); } } private Nullable _Birthday; partial void OnBirthdayChanging(Nullable value); partial void OnBirthdayChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 Sex { get { return _Sex; } set { OnSexChanging(value); ReportPropertyChanging("Sex"); _Sex = StructuralObject.SetValidValue(value); ReportPropertyChanged("Sex"); OnSexChanged(); } } private global::System.Int32 _Sex; partial void OnSexChanging(global::System.Int32 value); partial void OnSexChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Email { get { return _Email; } set { OnEmailChanging(value); ReportPropertyChanging("Email"); _Email = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Email"); OnEmailChanged(); } } private global::System.String _Email; partial void OnEmailChanging(global::System.String value); partial void OnEmailChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Phone { get { return _Phone; } set { OnPhoneChanging(value); ReportPropertyChanging("Phone"); _Phone = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Phone"); OnPhoneChanged(); } } private global::System.String _Phone; partial void OnPhoneChanging(global::System.String value); partial void OnPhoneChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Tel { get { return _Tel; } set { OnTelChanging(value); ReportPropertyChanging("Tel"); _Tel = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Tel"); OnTelChanged(); } } private global::System.String _Tel; partial void OnTelChanging(global::System.String value); partial void OnTelChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String LastLoginIp { get { return _LastLoginIp; } set { OnLastLoginIpChanging(value); ReportPropertyChanging("LastLoginIp"); _LastLoginIp = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("LastLoginIp"); OnLastLoginIpChanged(); } } private global::System.String _LastLoginIp; partial void OnLastLoginIpChanging(global::System.String value); partial void OnLastLoginIpChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable LastLoginTime { get { return _LastLoginTime; } set { OnLastLoginTimeChanging(value); ReportPropertyChanging("LastLoginTime"); _LastLoginTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("LastLoginTime"); OnLastLoginTimeChanged(); } } private Nullable _LastLoginTime; partial void OnLastLoginTimeChanging(Nullable value); partial void OnLastLoginTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 AdminType { get { return _AdminType; } set { OnAdminTypeChanging(value); ReportPropertyChanging("AdminType"); _AdminType = StructuralObject.SetValidValue(value); ReportPropertyChanged("AdminType"); OnAdminTypeChanged(); } } private global::System.Int32 _AdminType; partial void OnAdminTypeChanging(global::System.Int32 value); partial void OnAdminTypeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 Status { get { return _Status; } set { OnStatusChanging(value); ReportPropertyChanging("Status"); _Status = StructuralObject.SetValidValue(value); ReportPropertyChanged("Status"); OnStatusChanged(); } } private global::System.Int32 _Status; partial void OnStatusChanging(global::System.Int32 value); partial void OnStatusChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedTime { get { return _CreatedTime; } set { OnCreatedTimeChanging(value); ReportPropertyChanging("CreatedTime"); _CreatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedTime"); OnCreatedTimeChanged(); } } private Nullable _CreatedTime; partial void OnCreatedTimeChanging(Nullable value); partial void OnCreatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedTime { get { return _UpdatedTime; } set { OnUpdatedTimeChanging(value); ReportPropertyChanging("UpdatedTime"); _UpdatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedTime"); OnUpdatedTimeChanged(); } } private Nullable _UpdatedTime; partial void OnUpdatedTimeChanging(Nullable value); partial void OnUpdatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedUserId { get { return _CreatedUserId; } set { OnCreatedUserIdChanging(value); ReportPropertyChanging("CreatedUserId"); _CreatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedUserId"); OnCreatedUserIdChanged(); } } private Nullable _CreatedUserId; partial void OnCreatedUserIdChanging(Nullable value); partial void OnCreatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String CreatedUserName { get { return _CreatedUserName; } set { OnCreatedUserNameChanging(value); ReportPropertyChanging("CreatedUserName"); _CreatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("CreatedUserName"); OnCreatedUserNameChanged(); } } private global::System.String _CreatedUserName; partial void OnCreatedUserNameChanging(global::System.String value); partial void OnCreatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedUserId { get { return _UpdatedUserId; } set { OnUpdatedUserIdChanging(value); ReportPropertyChanging("UpdatedUserId"); _UpdatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedUserId"); OnUpdatedUserIdChanged(); } } private Nullable _UpdatedUserId; partial void OnUpdatedUserIdChanging(Nullable value); partial void OnUpdatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String UpdatedUserName { get { return _UpdatedUserName; } set { OnUpdatedUserNameChanging(value); ReportPropertyChanging("UpdatedUserName"); _UpdatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("UpdatedUserName"); OnUpdatedUserNameChanged(); } } private global::System.String _UpdatedUserName; partial void OnUpdatedUserNameChanging(global::System.String value); partial void OnUpdatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Boolean IsDeleted { get { return _IsDeleted; } set { OnIsDeletedChanging(value); ReportPropertyChanging("IsDeleted"); _IsDeleted = StructuralObject.SetValidValue(value); ReportPropertyChanged("IsDeleted"); OnIsDeletedChanged(); } } private global::System.Boolean _IsDeleted; partial void OnIsDeletedChanging(global::System.Boolean value); partial void OnIsDeletedChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable LineType { get { return _LineType; } set { OnLineTypeChanging(value); ReportPropertyChanging("LineType"); _LineType = StructuralObject.SetValidValue(value); ReportPropertyChanged("LineType"); OnLineTypeChanged(); } } private Nullable _LineType; partial void OnLineTypeChanging(Nullable value); partial void OnLineTypeChanged(); #endregion #region 导航属性 /// /// 没有元数据文档可用。 /// [XmlIgnoreAttribute()] [SoapIgnoreAttribute()] [DataMemberAttribute()] [EdmRelationshipNavigationPropertyAttribute("TEST", "sys_user_data_scope", "sys_org")] public EntityCollection sys_org { get { return ((IEntityWithRelationships)this).RelationshipManager.GetRelatedCollection("TEST.sys_user_data_scope", "sys_org"); } set { if ((value != null)) { ((IEntityWithRelationships)this).RelationshipManager.InitializeRelatedCollection("TEST.sys_user_data_scope", "sys_org", value); } } } /// /// 没有元数据文档可用。 /// [XmlIgnoreAttribute()] [SoapIgnoreAttribute()] [DataMemberAttribute()] [EdmRelationshipNavigationPropertyAttribute("TEST", "sys_user_role", "sys_role")] public EntityCollection sys_role { get { return ((IEntityWithRelationships)this).RelationshipManager.GetRelatedCollection("TEST.sys_user_role", "sys_role"); } set { if ((value != null)) { ((IEntityWithRelationships)this).RelationshipManager.InitializeRelatedCollection("TEST.sys_user_role", "sys_role", value); } } } #endregion } /// /// 没有元数据文档可用。 /// [EdmEntityTypeAttribute(NamespaceName="TEST", Name="v_empty_location")] [Serializable()] [DataContractAttribute(IsReference=true)] public partial class v_empty_location : EntityObject { #region 工厂方法 /// /// 创建新的 v_empty_location 对象。 /// /// Id 属性的初始值。 /// PlaceCode 属性的初始值。 /// PlaceStatus 属性的初始值。 /// AreaId 属性的初始值。 /// RowNo 属性的初始值。 /// ColumnNo 属性的初始值。 /// LayerNo 属性的初始值。 /// DeepcellNo 属性的初始值。 /// Aisle 属性的初始值。 /// Line 属性的初始值。 /// Islock 属性的初始值。 /// EmptyContainer 属性的初始值。 /// Length 属性的初始值。 /// Width 属性的初始值。 /// Height 属性的初始值。 /// MaxWeight 属性的初始值。 /// HeightLevel 属性的初始值。 /// Priority 属性的初始值。 /// IsDeleted 属性的初始值。 public static v_empty_location Createv_empty_location(global::System.Int64 id, global::System.String placeCode, global::System.Int32 placeStatus, global::System.Int64 areaId, global::System.Int32 rowNo, global::System.Int32 columnNo, global::System.Int32 layerNo, global::System.Int32 deepcellNo, global::System.Int32 aisle, global::System.Int32 line, global::System.Int32 islock, global::System.Int32 emptyContainer, global::System.Decimal length, global::System.Decimal width, global::System.Decimal height, global::System.Decimal maxWeight, global::System.Int32 heightLevel, global::System.Int32 priority, global::System.Boolean isDeleted) { v_empty_location v_empty_location = new v_empty_location(); v_empty_location.Id = id; v_empty_location.PlaceCode = placeCode; v_empty_location.PlaceStatus = placeStatus; v_empty_location.AreaId = areaId; v_empty_location.RowNo = rowNo; v_empty_location.ColumnNo = columnNo; v_empty_location.LayerNo = layerNo; v_empty_location.DeepcellNo = deepcellNo; v_empty_location.Aisle = aisle; v_empty_location.Line = line; v_empty_location.Islock = islock; v_empty_location.EmptyContainer = emptyContainer; v_empty_location.Length = length; v_empty_location.Width = width; v_empty_location.Height = height; v_empty_location.MaxWeight = maxWeight; v_empty_location.HeightLevel = heightLevel; v_empty_location.Priority = priority; v_empty_location.IsDeleted = isDeleted; return v_empty_location; } #endregion #region 基元属性 /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 Id { get { return _Id; } set { if (_Id != value) { OnIdChanging(value); ReportPropertyChanging("Id"); _Id = StructuralObject.SetValidValue(value); ReportPropertyChanged("Id"); OnIdChanged(); } } } private global::System.Int64 _Id; partial void OnIdChanging(global::System.Int64 value); partial void OnIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.String PlaceCode { get { return _PlaceCode; } set { if (_PlaceCode != value) { OnPlaceCodeChanging(value); ReportPropertyChanging("PlaceCode"); _PlaceCode = StructuralObject.SetValidValue(value, false); ReportPropertyChanged("PlaceCode"); OnPlaceCodeChanged(); } } } private global::System.String _PlaceCode; partial void OnPlaceCodeChanging(global::System.String value); partial void OnPlaceCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 PlaceStatus { get { return _PlaceStatus; } set { if (_PlaceStatus != value) { OnPlaceStatusChanging(value); ReportPropertyChanging("PlaceStatus"); _PlaceStatus = StructuralObject.SetValidValue(value); ReportPropertyChanged("PlaceStatus"); OnPlaceStatusChanged(); } } } private global::System.Int32 _PlaceStatus; partial void OnPlaceStatusChanging(global::System.Int32 value); partial void OnPlaceStatusChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 AreaId { get { return _AreaId; } set { if (_AreaId != value) { OnAreaIdChanging(value); ReportPropertyChanging("AreaId"); _AreaId = StructuralObject.SetValidValue(value); ReportPropertyChanged("AreaId"); OnAreaIdChanged(); } } } private global::System.Int64 _AreaId; partial void OnAreaIdChanging(global::System.Int64 value); partial void OnAreaIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 RowNo { get { return _RowNo; } set { if (_RowNo != value) { OnRowNoChanging(value); ReportPropertyChanging("RowNo"); _RowNo = StructuralObject.SetValidValue(value); ReportPropertyChanged("RowNo"); OnRowNoChanged(); } } } private global::System.Int32 _RowNo; partial void OnRowNoChanging(global::System.Int32 value); partial void OnRowNoChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 ColumnNo { get { return _ColumnNo; } set { if (_ColumnNo != value) { OnColumnNoChanging(value); ReportPropertyChanging("ColumnNo"); _ColumnNo = StructuralObject.SetValidValue(value); ReportPropertyChanged("ColumnNo"); OnColumnNoChanged(); } } } private global::System.Int32 _ColumnNo; partial void OnColumnNoChanging(global::System.Int32 value); partial void OnColumnNoChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 LayerNo { get { return _LayerNo; } set { if (_LayerNo != value) { OnLayerNoChanging(value); ReportPropertyChanging("LayerNo"); _LayerNo = StructuralObject.SetValidValue(value); ReportPropertyChanged("LayerNo"); OnLayerNoChanged(); } } } private global::System.Int32 _LayerNo; partial void OnLayerNoChanging(global::System.Int32 value); partial void OnLayerNoChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 DeepcellNo { get { return _DeepcellNo; } set { if (_DeepcellNo != value) { OnDeepcellNoChanging(value); ReportPropertyChanging("DeepcellNo"); _DeepcellNo = StructuralObject.SetValidValue(value); ReportPropertyChanged("DeepcellNo"); OnDeepcellNoChanged(); } } } private global::System.Int32 _DeepcellNo; partial void OnDeepcellNoChanging(global::System.Int32 value); partial void OnDeepcellNoChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 Aisle { get { return _Aisle; } set { if (_Aisle != value) { OnAisleChanging(value); ReportPropertyChanging("Aisle"); _Aisle = StructuralObject.SetValidValue(value); ReportPropertyChanged("Aisle"); OnAisleChanged(); } } } private global::System.Int32 _Aisle; partial void OnAisleChanging(global::System.Int32 value); partial void OnAisleChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 Line { get { return _Line; } set { if (_Line != value) { OnLineChanging(value); ReportPropertyChanging("Line"); _Line = StructuralObject.SetValidValue(value); ReportPropertyChanged("Line"); OnLineChanged(); } } } private global::System.Int32 _Line; partial void OnLineChanging(global::System.Int32 value); partial void OnLineChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 Islock { get { return _Islock; } set { if (_Islock != value) { OnIslockChanging(value); ReportPropertyChanging("Islock"); _Islock = StructuralObject.SetValidValue(value); ReportPropertyChanged("Islock"); OnIslockChanged(); } } } private global::System.Int32 _Islock; partial void OnIslockChanging(global::System.Int32 value); partial void OnIslockChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 EmptyContainer { get { return _EmptyContainer; } set { if (_EmptyContainer != value) { OnEmptyContainerChanging(value); ReportPropertyChanging("EmptyContainer"); _EmptyContainer = StructuralObject.SetValidValue(value); ReportPropertyChanged("EmptyContainer"); OnEmptyContainerChanged(); } } } private global::System.Int32 _EmptyContainer; partial void OnEmptyContainerChanging(global::System.Int32 value); partial void OnEmptyContainerChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String PositionnoForSrm { get { return _PositionnoForSrm; } set { OnPositionnoForSrmChanging(value); ReportPropertyChanging("PositionnoForSrm"); _PositionnoForSrm = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("PositionnoForSrm"); OnPositionnoForSrmChanged(); } } private global::System.String _PositionnoForSrm; partial void OnPositionnoForSrmChanging(global::System.String value); partial void OnPositionnoForSrmChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Xzb { get { return _Xzb; } set { OnXzbChanging(value); ReportPropertyChanging("Xzb"); _Xzb = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Xzb"); OnXzbChanged(); } } private global::System.String _Xzb; partial void OnXzbChanging(global::System.String value); partial void OnXzbChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Yzb { get { return _Yzb; } set { OnYzbChanging(value); ReportPropertyChanging("Yzb"); _Yzb = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Yzb"); OnYzbChanged(); } } private global::System.String _Yzb; partial void OnYzbChanging(global::System.String value); partial void OnYzbChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Zzb { get { return _Zzb; } set { OnZzbChanging(value); ReportPropertyChanging("Zzb"); _Zzb = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Zzb"); OnZzbChanged(); } } private global::System.String _Zzb; partial void OnZzbChanging(global::System.String value); partial void OnZzbChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Decimal Length { get { return _Length; } set { if (_Length != value) { OnLengthChanging(value); ReportPropertyChanging("Length"); _Length = StructuralObject.SetValidValue(value); ReportPropertyChanged("Length"); OnLengthChanged(); } } } private global::System.Decimal _Length; partial void OnLengthChanging(global::System.Decimal value); partial void OnLengthChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Decimal Width { get { return _Width; } set { if (_Width != value) { OnWidthChanging(value); ReportPropertyChanging("Width"); _Width = StructuralObject.SetValidValue(value); ReportPropertyChanged("Width"); OnWidthChanged(); } } } private global::System.Decimal _Width; partial void OnWidthChanging(global::System.Decimal value); partial void OnWidthChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Decimal Height { get { return _Height; } set { if (_Height != value) { OnHeightChanging(value); ReportPropertyChanging("Height"); _Height = StructuralObject.SetValidValue(value); ReportPropertyChanged("Height"); OnHeightChanged(); } } } private global::System.Decimal _Height; partial void OnHeightChanging(global::System.Decimal value); partial void OnHeightChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Decimal MaxWeight { get { return _MaxWeight; } set { if (_MaxWeight != value) { OnMaxWeightChanging(value); ReportPropertyChanging("MaxWeight"); _MaxWeight = StructuralObject.SetValidValue(value); ReportPropertyChanged("MaxWeight"); OnMaxWeightChanged(); } } } private global::System.Decimal _MaxWeight; partial void OnMaxWeightChanging(global::System.Decimal value); partial void OnMaxWeightChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 HeightLevel { get { return _HeightLevel; } set { if (_HeightLevel != value) { OnHeightLevelChanging(value); ReportPropertyChanging("HeightLevel"); _HeightLevel = StructuralObject.SetValidValue(value); ReportPropertyChanged("HeightLevel"); OnHeightLevelChanged(); } } } private global::System.Int32 _HeightLevel; partial void OnHeightLevelChanging(global::System.Int32 value); partial void OnHeightLevelChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 Priority { get { return _Priority; } set { if (_Priority != value) { OnPriorityChanging(value); ReportPropertyChanging("Priority"); _Priority = StructuralObject.SetValidValue(value); ReportPropertyChanged("Priority"); OnPriorityChanged(); } } } private global::System.Int32 _Priority; partial void OnPriorityChanging(global::System.Int32 value); partial void OnPriorityChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedTime { get { return _CreatedTime; } set { OnCreatedTimeChanging(value); ReportPropertyChanging("CreatedTime"); _CreatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedTime"); OnCreatedTimeChanged(); } } private Nullable _CreatedTime; partial void OnCreatedTimeChanging(Nullable value); partial void OnCreatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedTime { get { return _UpdatedTime; } set { OnUpdatedTimeChanging(value); ReportPropertyChanging("UpdatedTime"); _UpdatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedTime"); OnUpdatedTimeChanged(); } } private Nullable _UpdatedTime; partial void OnUpdatedTimeChanging(Nullable value); partial void OnUpdatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedUserId { get { return _CreatedUserId; } set { OnCreatedUserIdChanging(value); ReportPropertyChanging("CreatedUserId"); _CreatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedUserId"); OnCreatedUserIdChanged(); } } private Nullable _CreatedUserId; partial void OnCreatedUserIdChanging(Nullable value); partial void OnCreatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String CreatedUserName { get { return _CreatedUserName; } set { OnCreatedUserNameChanging(value); ReportPropertyChanging("CreatedUserName"); _CreatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("CreatedUserName"); OnCreatedUserNameChanged(); } } private global::System.String _CreatedUserName; partial void OnCreatedUserNameChanging(global::System.String value); partial void OnCreatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedUserId { get { return _UpdatedUserId; } set { OnUpdatedUserIdChanging(value); ReportPropertyChanging("UpdatedUserId"); _UpdatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedUserId"); OnUpdatedUserIdChanged(); } } private Nullable _UpdatedUserId; partial void OnUpdatedUserIdChanging(Nullable value); partial void OnUpdatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String UpdatedUserName { get { return _UpdatedUserName; } set { OnUpdatedUserNameChanging(value); ReportPropertyChanging("UpdatedUserName"); _UpdatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("UpdatedUserName"); OnUpdatedUserNameChanged(); } } private global::System.String _UpdatedUserName; partial void OnUpdatedUserNameChanging(global::System.String value); partial void OnUpdatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Boolean IsDeleted { get { return _IsDeleted; } set { if (_IsDeleted != value) { OnIsDeletedChanging(value); ReportPropertyChanging("IsDeleted"); _IsDeleted = StructuralObject.SetValidValue(value); ReportPropertyChanged("IsDeleted"); OnIsDeletedChanged(); } } } private global::System.Boolean _IsDeleted; partial void OnIsDeletedChanging(global::System.Boolean value); partial void OnIsDeletedChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String WareLocationTypeCode { get { return _WareLocationTypeCode; } set { OnWareLocationTypeCodeChanging(value); ReportPropertyChanging("WareLocationTypeCode"); _WareLocationTypeCode = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("WareLocationTypeCode"); OnWareLocationTypeCodeChanged(); } } private global::System.String _WareLocationTypeCode; partial void OnWareLocationTypeCodeChanging(global::System.String value); partial void OnWareLocationTypeCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String UnionCode { get { return _UnionCode; } set { OnUnionCodeChanging(value); ReportPropertyChanging("UnionCode"); _UnionCode = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("UnionCode"); OnUnionCodeChanged(); } } private global::System.String _UnionCode; partial void OnUnionCodeChanging(global::System.String value); partial void OnUnionCodeChanged(); #endregion } /// /// 没有元数据文档可用。 /// [EdmEntityTypeAttribute(NamespaceName="TEST", Name="v_ware_inventory_by_container")] [Serializable()] [DataContractAttribute(IsReference=true)] public partial class v_ware_inventory_by_container : EntityObject { #region 工厂方法 /// /// 创建新的 v_ware_inventory_by_container 对象。 /// /// Id 属性的初始值。 public static v_ware_inventory_by_container Createv_ware_inventory_by_container(global::System.Int64 id) { v_ware_inventory_by_container v_ware_inventory_by_container = new v_ware_inventory_by_container(); v_ware_inventory_by_container.Id = id; return v_ware_inventory_by_container; } #endregion #region 基元属性 /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 Id { get { return _Id; } set { if (_Id != value) { OnIdChanging(value); ReportPropertyChanging("Id"); _Id = StructuralObject.SetValidValue(value); ReportPropertyChanged("Id"); OnIdChanged(); } } } private global::System.Int64 _Id; partial void OnIdChanging(global::System.Int64 value); partial void OnIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String WareLocationCode { get { return _WareLocationCode; } set { OnWareLocationCodeChanging(value); ReportPropertyChanging("WareLocationCode"); _WareLocationCode = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("WareLocationCode"); OnWareLocationCodeChanged(); } } private global::System.String _WareLocationCode; partial void OnWareLocationCodeChanging(global::System.String value); partial void OnWareLocationCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String LocTypeCode { get { return _LocTypeCode; } set { OnLocTypeCodeChanging(value); ReportPropertyChanging("LocTypeCode"); _LocTypeCode = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("LocTypeCode"); OnLocTypeCodeChanged(); } } private global::System.String _LocTypeCode; partial void OnLocTypeCodeChanging(global::System.String value); partial void OnLocTypeCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String LocTypeName { get { return _LocTypeName; } set { OnLocTypeNameChanging(value); ReportPropertyChanging("LocTypeName"); _LocTypeName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("LocTypeName"); OnLocTypeNameChanged(); } } private global::System.String _LocTypeName; partial void OnLocTypeNameChanging(global::System.String value); partial void OnLocTypeNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable Row { get { return _Row; } set { OnRowChanging(value); ReportPropertyChanging("Row"); _Row = StructuralObject.SetValidValue(value); ReportPropertyChanged("Row"); OnRowChanged(); } } private Nullable _Row; partial void OnRowChanging(Nullable value); partial void OnRowChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable Lane { get { return _Lane; } set { OnLaneChanging(value); ReportPropertyChanging("Lane"); _Lane = StructuralObject.SetValidValue(value); ReportPropertyChanged("Lane"); OnLaneChanged(); } } private Nullable _Lane; partial void OnLaneChanging(Nullable value); partial void OnLaneChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String WareContainerCode { get { return _WareContainerCode; } set { OnWareContainerCodeChanging(value); ReportPropertyChanging("WareContainerCode"); _WareContainerCode = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("WareContainerCode"); OnWareContainerCodeChanged(); } } private global::System.String _WareContainerCode; partial void OnWareContainerCodeChanging(global::System.String value); partial void OnWareContainerCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String WareMaterialCode { get { return _WareMaterialCode; } set { OnWareMaterialCodeChanging(value); ReportPropertyChanging("WareMaterialCode"); _WareMaterialCode = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("WareMaterialCode"); OnWareMaterialCodeChanged(); } } private global::System.String _WareMaterialCode; partial void OnWareMaterialCodeChanging(global::System.String value); partial void OnWareMaterialCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String WareMaterialName { get { return _WareMaterialName; } set { OnWareMaterialNameChanging(value); ReportPropertyChanging("WareMaterialName"); _WareMaterialName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("WareMaterialName"); OnWareMaterialNameChanged(); } } private global::System.String _WareMaterialName; partial void OnWareMaterialNameChanging(global::System.String value); partial void OnWareMaterialNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String OrdersNo { get { return _OrdersNo; } set { OnOrdersNoChanging(value); ReportPropertyChanging("OrdersNo"); _OrdersNo = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("OrdersNo"); OnOrdersNoChanged(); } } private global::System.String _OrdersNo; partial void OnOrdersNoChanging(global::System.String value); partial void OnOrdersNoChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String OrderType { get { return _OrderType; } set { OnOrderTypeChanging(value); ReportPropertyChanging("OrderType"); _OrderType = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("OrderType"); OnOrderTypeChanged(); } } private global::System.String _OrderType; partial void OnOrderTypeChanging(global::System.String value); partial void OnOrderTypeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String PurchaseNo { get { return _PurchaseNo; } set { OnPurchaseNoChanging(value); ReportPropertyChanging("PurchaseNo"); _PurchaseNo = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("PurchaseNo"); OnPurchaseNoChanged(); } } private global::System.String _PurchaseNo; partial void OnPurchaseNoChanging(global::System.String value); partial void OnPurchaseNoChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String DeliveryNo { get { return _DeliveryNo; } set { OnDeliveryNoChanging(value); ReportPropertyChanging("DeliveryNo"); _DeliveryNo = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("DeliveryNo"); OnDeliveryNoChanged(); } } private global::System.String _DeliveryNo; partial void OnDeliveryNoChanging(global::System.String value); partial void OnDeliveryNoChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String CollectNo { get { return _CollectNo; } set { OnCollectNoChanging(value); ReportPropertyChanging("CollectNo"); _CollectNo = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("CollectNo"); OnCollectNoChanged(); } } private global::System.String _CollectNo; partial void OnCollectNoChanging(global::System.String value); partial void OnCollectNoChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable Quantity { get { return _Quantity; } set { OnQuantityChanging(value); ReportPropertyChanging("Quantity"); _Quantity = StructuralObject.SetValidValue(value); ReportPropertyChanged("Quantity"); OnQuantityChanged(); } } private Nullable _Quantity; partial void OnQuantityChanging(Nullable value); partial void OnQuantityChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String ItemBatchNo { get { return _ItemBatchNo; } set { OnItemBatchNoChanging(value); ReportPropertyChanging("ItemBatchNo"); _ItemBatchNo = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("ItemBatchNo"); OnItemBatchNoChanged(); } } private global::System.String _ItemBatchNo; partial void OnItemBatchNoChanging(global::System.String value); partial void OnItemBatchNoChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Unit { get { return _Unit; } set { OnUnitChanging(value); ReportPropertyChanging("Unit"); _Unit = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Unit"); OnUnitChanged(); } } private global::System.String _Unit; partial void OnUnitChanging(global::System.String value); partial void OnUnitChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Remarks { get { return _Remarks; } set { OnRemarksChanging(value); ReportPropertyChanging("Remarks"); _Remarks = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Remarks"); OnRemarksChanged(); } } private global::System.String _Remarks; partial void OnRemarksChanging(global::System.String value); partial void OnRemarksChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable IsLocked { get { return _IsLocked; } set { OnIsLockedChanging(value); ReportPropertyChanging("IsLocked"); _IsLocked = StructuralObject.SetValidValue(value); ReportPropertyChanged("IsLocked"); OnIsLockedChanged(); } } private Nullable _IsLocked; partial void OnIsLockedChanging(Nullable value); partial void OnIsLockedChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable IsDeleted { get { return _IsDeleted; } set { OnIsDeletedChanging(value); ReportPropertyChanging("IsDeleted"); _IsDeleted = StructuralObject.SetValidValue(value); ReportPropertyChanged("IsDeleted"); OnIsDeletedChanged(); } } private Nullable _IsDeleted; partial void OnIsDeletedChanging(Nullable value); partial void OnIsDeletedChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedUserId { get { return _UpdatedUserId; } set { OnUpdatedUserIdChanging(value); ReportPropertyChanging("UpdatedUserId"); _UpdatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedUserId"); OnUpdatedUserIdChanged(); } } private Nullable _UpdatedUserId; partial void OnUpdatedUserIdChanging(Nullable value); partial void OnUpdatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String UpdatedUserName { get { return _UpdatedUserName; } set { OnUpdatedUserNameChanging(value); ReportPropertyChanging("UpdatedUserName"); _UpdatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("UpdatedUserName"); OnUpdatedUserNameChanged(); } } private global::System.String _UpdatedUserName; partial void OnUpdatedUserNameChanging(global::System.String value); partial void OnUpdatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedTime { get { return _UpdatedTime; } set { OnUpdatedTimeChanging(value); ReportPropertyChanging("UpdatedTime"); _UpdatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedTime"); OnUpdatedTimeChanged(); } } private Nullable _UpdatedTime; partial void OnUpdatedTimeChanging(Nullable value); partial void OnUpdatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedUserId { get { return _CreatedUserId; } set { OnCreatedUserIdChanging(value); ReportPropertyChanging("CreatedUserId"); _CreatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedUserId"); OnCreatedUserIdChanged(); } } private Nullable _CreatedUserId; partial void OnCreatedUserIdChanging(Nullable value); partial void OnCreatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String CreatedUserName { get { return _CreatedUserName; } set { OnCreatedUserNameChanging(value); ReportPropertyChanging("CreatedUserName"); _CreatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("CreatedUserName"); OnCreatedUserNameChanged(); } } private global::System.String _CreatedUserName; partial void OnCreatedUserNameChanging(global::System.String value); partial void OnCreatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedTime { get { return _CreatedTime; } set { OnCreatedTimeChanging(value); ReportPropertyChanging("CreatedTime"); _CreatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedTime"); OnCreatedTimeChanged(); } } private Nullable _CreatedTime; partial void OnCreatedTimeChanging(Nullable value); partial void OnCreatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String BatchNo { get { return _BatchNo; } set { OnBatchNoChanging(value); ReportPropertyChanging("BatchNo"); _BatchNo = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("BatchNo"); OnBatchNoChanged(); } } private global::System.String _BatchNo; partial void OnBatchNoChanging(global::System.String value); partial void OnBatchNoChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String ContainerType { get { return _ContainerType; } set { OnContainerTypeChanging(value); ReportPropertyChanging("ContainerType"); _ContainerType = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("ContainerType"); OnContainerTypeChanged(); } } private global::System.String _ContainerType; partial void OnContainerTypeChanging(global::System.String value); partial void OnContainerTypeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable StockStatus { get { return _StockStatus; } set { OnStockStatusChanging(value); ReportPropertyChanging("StockStatus"); _StockStatus = StructuralObject.SetValidValue(value); ReportPropertyChanged("StockStatus"); OnStockStatusChanged(); } } private Nullable _StockStatus; partial void OnStockStatusChanging(Nullable value); partial void OnStockStatusChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable IsEmptyContainer { get { return _IsEmptyContainer; } set { OnIsEmptyContainerChanging(value); ReportPropertyChanging("IsEmptyContainer"); _IsEmptyContainer = StructuralObject.SetValidValue(value); ReportPropertyChanged("IsEmptyContainer"); OnIsEmptyContainerChanged(); } } private Nullable _IsEmptyContainer; partial void OnIsEmptyContainerChanging(Nullable value); partial void OnIsEmptyContainerChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable DeepcellNo { get { return _DeepcellNo; } set { OnDeepcellNoChanging(value); ReportPropertyChanging("DeepcellNo"); _DeepcellNo = StructuralObject.SetValidValue(value); ReportPropertyChanged("DeepcellNo"); OnDeepcellNoChanged(); } } private Nullable _DeepcellNo; partial void OnDeepcellNoChanging(Nullable value); partial void OnDeepcellNoChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String UnionCode { get { return _UnionCode; } set { OnUnionCodeChanging(value); ReportPropertyChanging("UnionCode"); _UnionCode = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("UnionCode"); OnUnionCodeChanged(); } } private global::System.String _UnionCode; partial void OnUnionCodeChanging(global::System.String value); partial void OnUnionCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String PartCode { get { return _PartCode; } set { OnPartCodeChanging(value); ReportPropertyChanging("PartCode"); _PartCode = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("PartCode"); OnPartCodeChanged(); } } private global::System.String _PartCode; partial void OnPartCodeChanging(global::System.String value); partial void OnPartCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String PartName { get { return _PartName; } set { OnPartNameChanging(value); ReportPropertyChanging("PartName"); _PartName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("PartName"); OnPartNameChanged(); } } private global::System.String _PartName; partial void OnPartNameChanging(global::System.String value); partial void OnPartNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String RealLocationCode { get { return _RealLocationCode; } set { OnRealLocationCodeChanging(value); ReportPropertyChanging("RealLocationCode"); _RealLocationCode = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("RealLocationCode"); OnRealLocationCodeChanged(); } } private global::System.String _RealLocationCode; partial void OnRealLocationCodeChanging(global::System.String value); partial void OnRealLocationCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable LineType { get { return _LineType; } set { OnLineTypeChanging(value); ReportPropertyChanging("LineType"); _LineType = StructuralObject.SetValidValue(value); ReportPropertyChanged("LineType"); OnLineTypeChanged(); } } private Nullable _LineType; partial void OnLineTypeChanging(Nullable value); partial void OnLineTypeChanged(); #endregion } /// /// 没有元数据文档可用。 /// [EdmEntityTypeAttribute(NamespaceName="TEST", Name="ware_container_vs_material")] [Serializable()] [DataContractAttribute(IsReference=true)] public partial class ware_container_vs_material : EntityObject { #region 工厂方法 /// /// 创建新的 ware_container_vs_material 对象。 /// /// Id 属性的初始值。 public static ware_container_vs_material Createware_container_vs_material(global::System.Int64 id) { ware_container_vs_material ware_container_vs_material = new ware_container_vs_material(); ware_container_vs_material.Id = id; return ware_container_vs_material; } #endregion #region 基元属性 /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 Id { get { return _Id; } set { if (_Id != value) { OnIdChanging(value); ReportPropertyChanging("Id"); _Id = StructuralObject.SetValidValue(value); ReportPropertyChanged("Id"); OnIdChanged(); } } } private global::System.Int64 _Id; partial void OnIdChanging(global::System.Int64 value); partial void OnIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String WareContainerCode { get { return _WareContainerCode; } set { OnWareContainerCodeChanging(value); ReportPropertyChanging("WareContainerCode"); _WareContainerCode = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("WareContainerCode"); OnWareContainerCodeChanged(); } } private global::System.String _WareContainerCode; partial void OnWareContainerCodeChanging(global::System.String value); partial void OnWareContainerCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String WareMaterialCode { get { return _WareMaterialCode; } set { OnWareMaterialCodeChanging(value); ReportPropertyChanging("WareMaterialCode"); _WareMaterialCode = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("WareMaterialCode"); OnWareMaterialCodeChanged(); } } private global::System.String _WareMaterialCode; partial void OnWareMaterialCodeChanging(global::System.String value); partial void OnWareMaterialCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable Quantity { get { return _Quantity; } set { OnQuantityChanging(value); ReportPropertyChanging("Quantity"); _Quantity = StructuralObject.SetValidValue(value); ReportPropertyChanged("Quantity"); OnQuantityChanged(); } } private Nullable _Quantity; partial void OnQuantityChanging(Nullable value); partial void OnQuantityChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String PurchaseNo { get { return _PurchaseNo; } set { OnPurchaseNoChanging(value); ReportPropertyChanging("PurchaseNo"); _PurchaseNo = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("PurchaseNo"); OnPurchaseNoChanged(); } } private global::System.String _PurchaseNo; partial void OnPurchaseNoChanging(global::System.String value); partial void OnPurchaseNoChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String DeliveryNo { get { return _DeliveryNo; } set { OnDeliveryNoChanging(value); ReportPropertyChanging("DeliveryNo"); _DeliveryNo = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("DeliveryNo"); OnDeliveryNoChanged(); } } private global::System.String _DeliveryNo; partial void OnDeliveryNoChanging(global::System.String value); partial void OnDeliveryNoChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String CollectNo { get { return _CollectNo; } set { OnCollectNoChanging(value); ReportPropertyChanging("CollectNo"); _CollectNo = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("CollectNo"); OnCollectNoChanged(); } } private global::System.String _CollectNo; partial void OnCollectNoChanging(global::System.String value); partial void OnCollectNoChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String OrdersNo { get { return _OrdersNo; } set { OnOrdersNoChanging(value); ReportPropertyChanging("OrdersNo"); _OrdersNo = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("OrdersNo"); OnOrdersNoChanged(); } } private global::System.String _OrdersNo; partial void OnOrdersNoChanging(global::System.String value); partial void OnOrdersNoChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable Status { get { return _Status; } set { OnStatusChanging(value); ReportPropertyChanging("Status"); _Status = StructuralObject.SetValidValue(value); ReportPropertyChanged("Status"); OnStatusChanged(); } } private Nullable _Status; partial void OnStatusChanging(Nullable value); partial void OnStatusChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedTime { get { return _CreatedTime; } set { OnCreatedTimeChanging(value); ReportPropertyChanging("CreatedTime"); _CreatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedTime"); OnCreatedTimeChanged(); } } private Nullable _CreatedTime; partial void OnCreatedTimeChanging(Nullable value); partial void OnCreatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedTime { get { return _UpdatedTime; } set { OnUpdatedTimeChanging(value); ReportPropertyChanging("UpdatedTime"); _UpdatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedTime"); OnUpdatedTimeChanged(); } } private Nullable _UpdatedTime; partial void OnUpdatedTimeChanging(Nullable value); partial void OnUpdatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedUserId { get { return _CreatedUserId; } set { OnCreatedUserIdChanging(value); ReportPropertyChanging("CreatedUserId"); _CreatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedUserId"); OnCreatedUserIdChanged(); } } private Nullable _CreatedUserId; partial void OnCreatedUserIdChanging(Nullable value); partial void OnCreatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String CreatedUserName { get { return _CreatedUserName; } set { OnCreatedUserNameChanging(value); ReportPropertyChanging("CreatedUserName"); _CreatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("CreatedUserName"); OnCreatedUserNameChanged(); } } private global::System.String _CreatedUserName; partial void OnCreatedUserNameChanging(global::System.String value); partial void OnCreatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String UpdatedUserName { get { return _UpdatedUserName; } set { OnUpdatedUserNameChanging(value); ReportPropertyChanging("UpdatedUserName"); _UpdatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("UpdatedUserName"); OnUpdatedUserNameChanged(); } } private global::System.String _UpdatedUserName; partial void OnUpdatedUserNameChanging(global::System.String value); partial void OnUpdatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedUserId { get { return _UpdatedUserId; } set { OnUpdatedUserIdChanging(value); ReportPropertyChanging("UpdatedUserId"); _UpdatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedUserId"); OnUpdatedUserIdChanged(); } } private Nullable _UpdatedUserId; partial void OnUpdatedUserIdChanging(Nullable value); partial void OnUpdatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable IsLocked { get { return _IsLocked; } set { OnIsLockedChanging(value); ReportPropertyChanging("IsLocked"); _IsLocked = StructuralObject.SetValidValue(value); ReportPropertyChanged("IsLocked"); OnIsLockedChanged(); } } private Nullable _IsLocked; partial void OnIsLockedChanging(Nullable value); partial void OnIsLockedChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable IsDeleted { get { return _IsDeleted; } set { OnIsDeletedChanging(value); ReportPropertyChanging("IsDeleted"); _IsDeleted = StructuralObject.SetValidValue(value); ReportPropertyChanged("IsDeleted"); OnIsDeletedChanged(); } } private Nullable _IsDeleted; partial void OnIsDeletedChanging(Nullable value); partial void OnIsDeletedChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Remarks { get { return _Remarks; } set { OnRemarksChanging(value); ReportPropertyChanging("Remarks"); _Remarks = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Remarks"); OnRemarksChanged(); } } private global::System.String _Remarks; partial void OnRemarksChanging(global::System.String value); partial void OnRemarksChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable StockStatus { get { return _StockStatus; } set { OnStockStatusChanging(value); ReportPropertyChanging("StockStatus"); _StockStatus = StructuralObject.SetValidValue(value); ReportPropertyChanged("StockStatus"); OnStockStatusChanged(); } } private Nullable _StockStatus; partial void OnStockStatusChanging(Nullable value); partial void OnStockStatusChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable Price { get { return _Price; } set { OnPriceChanging(value); ReportPropertyChanging("Price"); _Price = StructuralObject.SetValidValue(value); ReportPropertyChanged("Price"); OnPriceChanged(); } } private Nullable _Price; partial void OnPriceChanging(Nullable value); partial void OnPriceChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String BarNo { get { return _BarNo; } set { OnBarNoChanging(value); ReportPropertyChanging("BarNo"); _BarNo = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("BarNo"); OnBarNoChanged(); } } private global::System.String _BarNo; partial void OnBarNoChanging(global::System.String value); partial void OnBarNoChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String OrderType { get { return _OrderType; } set { OnOrderTypeChanging(value); ReportPropertyChanging("OrderType"); _OrderType = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("OrderType"); OnOrderTypeChanged(); } } private global::System.String _OrderType; partial void OnOrderTypeChanging(global::System.String value); partial void OnOrderTypeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Unit { get { return _Unit; } set { OnUnitChanging(value); ReportPropertyChanging("Unit"); _Unit = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Unit"); OnUnitChanged(); } } private global::System.String _Unit; partial void OnUnitChanging(global::System.String value); partial void OnUnitChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String WareMaterialName { get { return _WareMaterialName; } set { OnWareMaterialNameChanging(value); ReportPropertyChanging("WareMaterialName"); _WareMaterialName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("WareMaterialName"); OnWareMaterialNameChanged(); } } private global::System.String _WareMaterialName; partial void OnWareMaterialNameChanging(global::System.String value); partial void OnWareMaterialNameChanged(); #endregion } /// /// 没有元数据文档可用。 /// [EdmEntityTypeAttribute(NamespaceName="TEST", Name="ware_device_wareing")] [Serializable()] [DataContractAttribute(IsReference=true)] public partial class ware_device_wareing : EntityObject { #region 工厂方法 /// /// 创建新的 ware_device_wareing 对象。 /// /// Id 属性的初始值。 /// WarningTime 属性的初始值。 /// IsDeleted 属性的初始值。 public static ware_device_wareing Createware_device_wareing(global::System.Int64 id, global::System.DateTime warningTime, global::System.Boolean isDeleted) { ware_device_wareing ware_device_wareing = new ware_device_wareing(); ware_device_wareing.Id = id; ware_device_wareing.WarningTime = warningTime; ware_device_wareing.IsDeleted = isDeleted; return ware_device_wareing; } #endregion #region 基元属性 /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 Id { get { return _Id; } set { if (_Id != value) { OnIdChanging(value); ReportPropertyChanging("Id"); _Id = StructuralObject.SetValidValue(value); ReportPropertyChanged("Id"); OnIdChanged(); } } } private global::System.Int64 _Id; partial void OnIdChanging(global::System.Int64 value); partial void OnIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.DateTime WarningTime { get { return _WarningTime; } set { OnWarningTimeChanging(value); ReportPropertyChanging("WarningTime"); _WarningTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("WarningTime"); OnWarningTimeChanged(); } } private global::System.DateTime _WarningTime; partial void OnWarningTimeChanging(global::System.DateTime value); partial void OnWarningTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String DeviceCode { get { return _DeviceCode; } set { OnDeviceCodeChanging(value); ReportPropertyChanging("DeviceCode"); _DeviceCode = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("DeviceCode"); OnDeviceCodeChanged(); } } private global::System.String _DeviceCode; partial void OnDeviceCodeChanging(global::System.String value); partial void OnDeviceCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String DeviceName { get { return _DeviceName; } set { OnDeviceNameChanging(value); ReportPropertyChanging("DeviceName"); _DeviceName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("DeviceName"); OnDeviceNameChanged(); } } private global::System.String _DeviceName; partial void OnDeviceNameChanging(global::System.String value); partial void OnDeviceNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String WarningCode { get { return _WarningCode; } set { OnWarningCodeChanging(value); ReportPropertyChanging("WarningCode"); _WarningCode = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("WarningCode"); OnWarningCodeChanged(); } } private global::System.String _WarningCode; partial void OnWarningCodeChanging(global::System.String value); partial void OnWarningCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String WarningDbAddress { get { return _WarningDbAddress; } set { OnWarningDbAddressChanging(value); ReportPropertyChanging("WarningDbAddress"); _WarningDbAddress = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("WarningDbAddress"); OnWarningDbAddressChanged(); } } private global::System.String _WarningDbAddress; partial void OnWarningDbAddressChanging(global::System.String value); partial void OnWarningDbAddressChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String WarningContent { get { return _WarningContent; } set { OnWarningContentChanging(value); ReportPropertyChanging("WarningContent"); _WarningContent = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("WarningContent"); OnWarningContentChanged(); } } private global::System.String _WarningContent; partial void OnWarningContentChanging(global::System.String value); partial void OnWarningContentChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable Status { get { return _Status; } set { OnStatusChanging(value); ReportPropertyChanging("Status"); _Status = StructuralObject.SetValidValue(value); ReportPropertyChanged("Status"); OnStatusChanged(); } } private Nullable _Status; partial void OnStatusChanging(Nullable value); partial void OnStatusChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String StatusName { get { return _StatusName; } set { OnStatusNameChanging(value); ReportPropertyChanging("StatusName"); _StatusName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("StatusName"); OnStatusNameChanged(); } } private global::System.String _StatusName; partial void OnStatusNameChanging(global::System.String value); partial void OnStatusNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String CloseContent { get { return _CloseContent; } set { OnCloseContentChanging(value); ReportPropertyChanging("CloseContent"); _CloseContent = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("CloseContent"); OnCloseContentChanged(); } } private global::System.String _CloseContent; partial void OnCloseContentChanging(global::System.String value); partial void OnCloseContentChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable FinishTime { get { return _FinishTime; } set { OnFinishTimeChanging(value); ReportPropertyChanging("FinishTime"); _FinishTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("FinishTime"); OnFinishTimeChanged(); } } private Nullable _FinishTime; partial void OnFinishTimeChanging(Nullable value); partial void OnFinishTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String DurationTime { get { return _DurationTime; } set { OnDurationTimeChanging(value); ReportPropertyChanging("DurationTime"); _DurationTime = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("DurationTime"); OnDurationTimeChanged(); } } private global::System.String _DurationTime; partial void OnDurationTimeChanging(global::System.String value); partial void OnDurationTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String OperationRemark { get { return _OperationRemark; } set { OnOperationRemarkChanging(value); ReportPropertyChanging("OperationRemark"); _OperationRemark = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("OperationRemark"); OnOperationRemarkChanged(); } } private global::System.String _OperationRemark; partial void OnOperationRemarkChanging(global::System.String value); partial void OnOperationRemarkChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable DeviceType { get { return _DeviceType; } set { OnDeviceTypeChanging(value); ReportPropertyChanging("DeviceType"); _DeviceType = StructuralObject.SetValidValue(value); ReportPropertyChanged("DeviceType"); OnDeviceTypeChanged(); } } private Nullable _DeviceType; partial void OnDeviceTypeChanging(Nullable value); partial void OnDeviceTypeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String DeviceTypeName { get { return _DeviceTypeName; } set { OnDeviceTypeNameChanging(value); ReportPropertyChanging("DeviceTypeName"); _DeviceTypeName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("DeviceTypeName"); OnDeviceTypeNameChanged(); } } private global::System.String _DeviceTypeName; partial void OnDeviceTypeNameChanging(global::System.String value); partial void OnDeviceTypeNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedTime { get { return _CreatedTime; } set { OnCreatedTimeChanging(value); ReportPropertyChanging("CreatedTime"); _CreatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedTime"); OnCreatedTimeChanged(); } } private Nullable _CreatedTime; partial void OnCreatedTimeChanging(Nullable value); partial void OnCreatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedTime { get { return _UpdatedTime; } set { OnUpdatedTimeChanging(value); ReportPropertyChanging("UpdatedTime"); _UpdatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedTime"); OnUpdatedTimeChanged(); } } private Nullable _UpdatedTime; partial void OnUpdatedTimeChanging(Nullable value); partial void OnUpdatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedUserId { get { return _CreatedUserId; } set { OnCreatedUserIdChanging(value); ReportPropertyChanging("CreatedUserId"); _CreatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedUserId"); OnCreatedUserIdChanged(); } } private Nullable _CreatedUserId; partial void OnCreatedUserIdChanging(Nullable value); partial void OnCreatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String CreatedUserName { get { return _CreatedUserName; } set { OnCreatedUserNameChanging(value); ReportPropertyChanging("CreatedUserName"); _CreatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("CreatedUserName"); OnCreatedUserNameChanged(); } } private global::System.String _CreatedUserName; partial void OnCreatedUserNameChanging(global::System.String value); partial void OnCreatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedUserId { get { return _UpdatedUserId; } set { OnUpdatedUserIdChanging(value); ReportPropertyChanging("UpdatedUserId"); _UpdatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedUserId"); OnUpdatedUserIdChanged(); } } private Nullable _UpdatedUserId; partial void OnUpdatedUserIdChanging(Nullable value); partial void OnUpdatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String UpdatedUserName { get { return _UpdatedUserName; } set { OnUpdatedUserNameChanging(value); ReportPropertyChanging("UpdatedUserName"); _UpdatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("UpdatedUserName"); OnUpdatedUserNameChanged(); } } private global::System.String _UpdatedUserName; partial void OnUpdatedUserNameChanging(global::System.String value); partial void OnUpdatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Boolean IsDeleted { get { return _IsDeleted; } set { OnIsDeletedChanging(value); ReportPropertyChanging("IsDeleted"); _IsDeleted = StructuralObject.SetValidValue(value); ReportPropertyChanged("IsDeleted"); OnIsDeletedChanged(); } } private global::System.Boolean _IsDeleted; partial void OnIsDeletedChanging(global::System.Boolean value); partial void OnIsDeletedChanged(); #endregion } /// /// 没有元数据文档可用。 /// [EdmEntityTypeAttribute(NamespaceName="TEST", Name="ware_flow_record")] [Serializable()] [DataContractAttribute(IsReference=true)] public partial class ware_flow_record : EntityObject { #region 工厂方法 /// /// 创建新的 ware_flow_record 对象。 /// /// Id 属性的初始值。 public static ware_flow_record Createware_flow_record(global::System.Int64 id) { ware_flow_record ware_flow_record = new ware_flow_record(); ware_flow_record.Id = id; return ware_flow_record; } #endregion #region 基元属性 /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 Id { get { return _Id; } set { if (_Id != value) { OnIdChanging(value); ReportPropertyChanging("Id"); _Id = StructuralObject.SetValidValue(value); ReportPropertyChanged("Id"); OnIdChanged(); } } } private global::System.Int64 _Id; partial void OnIdChanging(global::System.Int64 value); partial void OnIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable RecordType { get { return _RecordType; } set { OnRecordTypeChanging(value); ReportPropertyChanging("RecordType"); _RecordType = StructuralObject.SetValidValue(value); ReportPropertyChanged("RecordType"); OnRecordTypeChanged(); } } private Nullable _RecordType; partial void OnRecordTypeChanging(Nullable value); partial void OnRecordTypeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String ReservoirArea { get { return _ReservoirArea; } set { OnReservoirAreaChanging(value); ReportPropertyChanging("ReservoirArea"); _ReservoirArea = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("ReservoirArea"); OnReservoirAreaChanged(); } } private global::System.String _ReservoirArea; partial void OnReservoirAreaChanging(global::System.String value); partial void OnReservoirAreaChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String WareHousingNo { get { return _WareHousingNo; } set { OnWareHousingNoChanging(value); ReportPropertyChanging("WareHousingNo"); _WareHousingNo = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("WareHousingNo"); OnWareHousingNoChanged(); } } private global::System.String _WareHousingNo; partial void OnWareHousingNoChanging(global::System.String value); partial void OnWareHousingNoChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String PurchaseNo { get { return _PurchaseNo; } set { OnPurchaseNoChanging(value); ReportPropertyChanging("PurchaseNo"); _PurchaseNo = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("PurchaseNo"); OnPurchaseNoChanged(); } } private global::System.String _PurchaseNo; partial void OnPurchaseNoChanging(global::System.String value); partial void OnPurchaseNoChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String DeliveryNo { get { return _DeliveryNo; } set { OnDeliveryNoChanging(value); ReportPropertyChanging("DeliveryNo"); _DeliveryNo = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("DeliveryNo"); OnDeliveryNoChanged(); } } private global::System.String _DeliveryNo; partial void OnDeliveryNoChanging(global::System.String value); partial void OnDeliveryNoChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String CollectNo { get { return _CollectNo; } set { OnCollectNoChanging(value); ReportPropertyChanging("CollectNo"); _CollectNo = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("CollectNo"); OnCollectNoChanged(); } } private global::System.String _CollectNo; partial void OnCollectNoChanging(global::System.String value); partial void OnCollectNoChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String SourceWareLocationCode { get { return _SourceWareLocationCode; } set { OnSourceWareLocationCodeChanging(value); ReportPropertyChanging("SourceWareLocationCode"); _SourceWareLocationCode = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("SourceWareLocationCode"); OnSourceWareLocationCodeChanged(); } } private global::System.String _SourceWareLocationCode; partial void OnSourceWareLocationCodeChanging(global::System.String value); partial void OnSourceWareLocationCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String ToWareLocationCode { get { return _ToWareLocationCode; } set { OnToWareLocationCodeChanging(value); ReportPropertyChanging("ToWareLocationCode"); _ToWareLocationCode = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("ToWareLocationCode"); OnToWareLocationCodeChanged(); } } private global::System.String _ToWareLocationCode; partial void OnToWareLocationCodeChanging(global::System.String value); partial void OnToWareLocationCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String WareContainerCode { get { return _WareContainerCode; } set { OnWareContainerCodeChanging(value); ReportPropertyChanging("WareContainerCode"); _WareContainerCode = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("WareContainerCode"); OnWareContainerCodeChanged(); } } private global::System.String _WareContainerCode; partial void OnWareContainerCodeChanging(global::System.String value); partial void OnWareContainerCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String WareContainerName { get { return _WareContainerName; } set { OnWareContainerNameChanging(value); ReportPropertyChanging("WareContainerName"); _WareContainerName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("WareContainerName"); OnWareContainerNameChanged(); } } private global::System.String _WareContainerName; partial void OnWareContainerNameChanging(global::System.String value); partial void OnWareContainerNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String WareMaterialCode { get { return _WareMaterialCode; } set { OnWareMaterialCodeChanging(value); ReportPropertyChanging("WareMaterialCode"); _WareMaterialCode = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("WareMaterialCode"); OnWareMaterialCodeChanged(); } } private global::System.String _WareMaterialCode; partial void OnWareMaterialCodeChanging(global::System.String value); partial void OnWareMaterialCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String WareMaterialName { get { return _WareMaterialName; } set { OnWareMaterialNameChanging(value); ReportPropertyChanging("WareMaterialName"); _WareMaterialName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("WareMaterialName"); OnWareMaterialNameChanged(); } } private global::System.String _WareMaterialName; partial void OnWareMaterialNameChanging(global::System.String value); partial void OnWareMaterialNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable Quantity { get { return _Quantity; } set { OnQuantityChanging(value); ReportPropertyChanging("Quantity"); _Quantity = StructuralObject.SetValidValue(value); ReportPropertyChanged("Quantity"); OnQuantityChanged(); } } private Nullable _Quantity; partial void OnQuantityChanging(Nullable value); partial void OnQuantityChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String BarCode { get { return _BarCode; } set { OnBarCodeChanging(value); ReportPropertyChanging("BarCode"); _BarCode = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("BarCode"); OnBarCodeChanged(); } } private global::System.String _BarCode; partial void OnBarCodeChanging(global::System.String value); partial void OnBarCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String BasicSupplierInfoCode { get { return _BasicSupplierInfoCode; } set { OnBasicSupplierInfoCodeChanging(value); ReportPropertyChanging("BasicSupplierInfoCode"); _BasicSupplierInfoCode = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("BasicSupplierInfoCode"); OnBasicSupplierInfoCodeChanged(); } } private global::System.String _BasicSupplierInfoCode; partial void OnBasicSupplierInfoCodeChanging(global::System.String value); partial void OnBasicSupplierInfoCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String WarehousingType { get { return _WarehousingType; } set { OnWarehousingTypeChanging(value); ReportPropertyChanging("WarehousingType"); _WarehousingType = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("WarehousingType"); OnWarehousingTypeChanged(); } } private global::System.String _WarehousingType; partial void OnWarehousingTypeChanging(global::System.String value); partial void OnWarehousingTypeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String WareGoodsshelvesCode { get { return _WareGoodsshelvesCode; } set { OnWareGoodsshelvesCodeChanging(value); ReportPropertyChanging("WareGoodsshelvesCode"); _WareGoodsshelvesCode = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("WareGoodsshelvesCode"); OnWareGoodsshelvesCodeChanged(); } } private global::System.String _WareGoodsshelvesCode; partial void OnWareGoodsshelvesCodeChanging(global::System.String value); partial void OnWareGoodsshelvesCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable Status { get { return _Status; } set { OnStatusChanging(value); ReportPropertyChanging("Status"); _Status = StructuralObject.SetValidValue(value); ReportPropertyChanged("Status"); OnStatusChanged(); } } private Nullable _Status; partial void OnStatusChanging(Nullable value); partial void OnStatusChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable TenantId { get { return _TenantId; } set { OnTenantIdChanging(value); ReportPropertyChanging("TenantId"); _TenantId = StructuralObject.SetValidValue(value); ReportPropertyChanged("TenantId"); OnTenantIdChanged(); } } private Nullable _TenantId; partial void OnTenantIdChanging(Nullable value); partial void OnTenantIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedTime { get { return _CreatedTime; } set { OnCreatedTimeChanging(value); ReportPropertyChanging("CreatedTime"); _CreatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedTime"); OnCreatedTimeChanged(); } } private Nullable _CreatedTime; partial void OnCreatedTimeChanging(Nullable value); partial void OnCreatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedTime { get { return _UpdatedTime; } set { OnUpdatedTimeChanging(value); ReportPropertyChanging("UpdatedTime"); _UpdatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedTime"); OnUpdatedTimeChanged(); } } private Nullable _UpdatedTime; partial void OnUpdatedTimeChanging(Nullable value); partial void OnUpdatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedUserId { get { return _CreatedUserId; } set { OnCreatedUserIdChanging(value); ReportPropertyChanging("CreatedUserId"); _CreatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedUserId"); OnCreatedUserIdChanged(); } } private Nullable _CreatedUserId; partial void OnCreatedUserIdChanging(Nullable value); partial void OnCreatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String CreatedUserName { get { return _CreatedUserName; } set { OnCreatedUserNameChanging(value); ReportPropertyChanging("CreatedUserName"); _CreatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("CreatedUserName"); OnCreatedUserNameChanged(); } } private global::System.String _CreatedUserName; partial void OnCreatedUserNameChanging(global::System.String value); partial void OnCreatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String UpdatedUserName { get { return _UpdatedUserName; } set { OnUpdatedUserNameChanging(value); ReportPropertyChanging("UpdatedUserName"); _UpdatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("UpdatedUserName"); OnUpdatedUserNameChanged(); } } private global::System.String _UpdatedUserName; partial void OnUpdatedUserNameChanging(global::System.String value); partial void OnUpdatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedUserId { get { return _UpdatedUserId; } set { OnUpdatedUserIdChanging(value); ReportPropertyChanging("UpdatedUserId"); _UpdatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedUserId"); OnUpdatedUserIdChanged(); } } private Nullable _UpdatedUserId; partial void OnUpdatedUserIdChanging(Nullable value); partial void OnUpdatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable IsDeleted { get { return _IsDeleted; } set { OnIsDeletedChanging(value); ReportPropertyChanging("IsDeleted"); _IsDeleted = StructuralObject.SetValidValue(value); ReportPropertyChanged("IsDeleted"); OnIsDeletedChanged(); } } private Nullable _IsDeleted; partial void OnIsDeletedChanging(Nullable value); partial void OnIsDeletedChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Remarks { get { return _Remarks; } set { OnRemarksChanging(value); ReportPropertyChanging("Remarks"); _Remarks = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Remarks"); OnRemarksChanged(); } } private global::System.String _Remarks; partial void OnRemarksChanging(global::System.String value); partial void OnRemarksChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable OutInFlag { get { return _OutInFlag; } set { OnOutInFlagChanging(value); ReportPropertyChanging("OutInFlag"); _OutInFlag = StructuralObject.SetValidValue(value); ReportPropertyChanged("OutInFlag"); OnOutInFlagChanged(); } } private Nullable _OutInFlag; partial void OnOutInFlagChanging(Nullable value); partial void OnOutInFlagChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String SpecificationModel { get { return _SpecificationModel; } set { OnSpecificationModelChanging(value); ReportPropertyChanging("SpecificationModel"); _SpecificationModel = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("SpecificationModel"); OnSpecificationModelChanged(); } } private global::System.String _SpecificationModel; partial void OnSpecificationModelChanging(global::System.String value); partial void OnSpecificationModelChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String U8Warehouse { get { return _U8Warehouse; } set { OnU8WarehouseChanging(value); ReportPropertyChanging("U8Warehouse"); _U8Warehouse = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("U8Warehouse"); OnU8WarehouseChanged(); } } private global::System.String _U8Warehouse; partial void OnU8WarehouseChanging(global::System.String value); partial void OnU8WarehouseChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String U8DepName { get { return _U8DepName; } set { OnU8DepNameChanging(value); ReportPropertyChanging("U8DepName"); _U8DepName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("U8DepName"); OnU8DepNameChanged(); } } private global::System.String _U8DepName; partial void OnU8DepNameChanging(global::System.String value); partial void OnU8DepNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String cWhName { get { return _cWhName; } set { OncWhNameChanging(value); ReportPropertyChanging("cWhName"); _cWhName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("cWhName"); OncWhNameChanged(); } } private global::System.String _cWhName; partial void OncWhNameChanging(global::System.String value); partial void OncWhNameChanged(); #endregion } /// /// 没有元数据文档可用。 /// [EdmEntityTypeAttribute(NamespaceName="TEST", Name="ware_location_vs_container")] [Serializable()] [DataContractAttribute(IsReference=true)] public partial class ware_location_vs_container : EntityObject { #region 工厂方法 /// /// 创建新的 ware_location_vs_container 对象。 /// /// Id 属性的初始值。 public static ware_location_vs_container Createware_location_vs_container(global::System.Int64 id) { ware_location_vs_container ware_location_vs_container = new ware_location_vs_container(); ware_location_vs_container.Id = id; return ware_location_vs_container; } #endregion #region 基元属性 /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 Id { get { return _Id; } set { if (_Id != value) { OnIdChanging(value); ReportPropertyChanging("Id"); _Id = StructuralObject.SetValidValue(value); ReportPropertyChanged("Id"); OnIdChanged(); } } } private global::System.Int64 _Id; partial void OnIdChanging(global::System.Int64 value); partial void OnIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String WareStorehouseCode { get { return _WareStorehouseCode; } set { OnWareStorehouseCodeChanging(value); ReportPropertyChanging("WareStorehouseCode"); _WareStorehouseCode = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("WareStorehouseCode"); OnWareStorehouseCodeChanged(); } } private global::System.String _WareStorehouseCode; partial void OnWareStorehouseCodeChanging(global::System.String value); partial void OnWareStorehouseCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String WareRegionCode { get { return _WareRegionCode; } set { OnWareRegionCodeChanging(value); ReportPropertyChanging("WareRegionCode"); _WareRegionCode = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("WareRegionCode"); OnWareRegionCodeChanged(); } } private global::System.String _WareRegionCode; partial void OnWareRegionCodeChanging(global::System.String value); partial void OnWareRegionCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String WareLocationCode { get { return _WareLocationCode; } set { OnWareLocationCodeChanging(value); ReportPropertyChanging("WareLocationCode"); _WareLocationCode = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("WareLocationCode"); OnWareLocationCodeChanged(); } } private global::System.String _WareLocationCode; partial void OnWareLocationCodeChanging(global::System.String value); partial void OnWareLocationCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String WareContainerCode { get { return _WareContainerCode; } set { OnWareContainerCodeChanging(value); ReportPropertyChanging("WareContainerCode"); _WareContainerCode = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("WareContainerCode"); OnWareContainerCodeChanged(); } } private global::System.String _WareContainerCode; partial void OnWareContainerCodeChanging(global::System.String value); partial void OnWareContainerCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable IsEmptyContainer { get { return _IsEmptyContainer; } set { OnIsEmptyContainerChanging(value); ReportPropertyChanging("IsEmptyContainer"); _IsEmptyContainer = StructuralObject.SetValidValue(value); ReportPropertyChanged("IsEmptyContainer"); OnIsEmptyContainerChanged(); } } private Nullable _IsEmptyContainer; partial void OnIsEmptyContainerChanging(Nullable value); partial void OnIsEmptyContainerChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable Status { get { return _Status; } set { OnStatusChanging(value); ReportPropertyChanging("Status"); _Status = StructuralObject.SetValidValue(value); ReportPropertyChanged("Status"); OnStatusChanged(); } } private Nullable _Status; partial void OnStatusChanging(Nullable value); partial void OnStatusChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedTime { get { return _CreatedTime; } set { OnCreatedTimeChanging(value); ReportPropertyChanging("CreatedTime"); _CreatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedTime"); OnCreatedTimeChanged(); } } private Nullable _CreatedTime; partial void OnCreatedTimeChanging(Nullable value); partial void OnCreatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedTime { get { return _UpdatedTime; } set { OnUpdatedTimeChanging(value); ReportPropertyChanging("UpdatedTime"); _UpdatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedTime"); OnUpdatedTimeChanged(); } } private Nullable _UpdatedTime; partial void OnUpdatedTimeChanging(Nullable value); partial void OnUpdatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedUserId { get { return _CreatedUserId; } set { OnCreatedUserIdChanging(value); ReportPropertyChanging("CreatedUserId"); _CreatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedUserId"); OnCreatedUserIdChanged(); } } private Nullable _CreatedUserId; partial void OnCreatedUserIdChanging(Nullable value); partial void OnCreatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String CreatedUserName { get { return _CreatedUserName; } set { OnCreatedUserNameChanging(value); ReportPropertyChanging("CreatedUserName"); _CreatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("CreatedUserName"); OnCreatedUserNameChanged(); } } private global::System.String _CreatedUserName; partial void OnCreatedUserNameChanging(global::System.String value); partial void OnCreatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String UpdatedUserName { get { return _UpdatedUserName; } set { OnUpdatedUserNameChanging(value); ReportPropertyChanging("UpdatedUserName"); _UpdatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("UpdatedUserName"); OnUpdatedUserNameChanged(); } } private global::System.String _UpdatedUserName; partial void OnUpdatedUserNameChanging(global::System.String value); partial void OnUpdatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedUserId { get { return _UpdatedUserId; } set { OnUpdatedUserIdChanging(value); ReportPropertyChanging("UpdatedUserId"); _UpdatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedUserId"); OnUpdatedUserIdChanged(); } } private Nullable _UpdatedUserId; partial void OnUpdatedUserIdChanging(Nullable value); partial void OnUpdatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable IsDeleted { get { return _IsDeleted; } set { OnIsDeletedChanging(value); ReportPropertyChanging("IsDeleted"); _IsDeleted = StructuralObject.SetValidValue(value); ReportPropertyChanged("IsDeleted"); OnIsDeletedChanged(); } } private Nullable _IsDeleted; partial void OnIsDeletedChanging(Nullable value); partial void OnIsDeletedChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Remarks { get { return _Remarks; } set { OnRemarksChanging(value); ReportPropertyChanging("Remarks"); _Remarks = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Remarks"); OnRemarksChanged(); } } private global::System.String _Remarks; partial void OnRemarksChanging(global::System.String value); partial void OnRemarksChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable Row { get { return _Row; } set { OnRowChanging(value); ReportPropertyChanging("Row"); _Row = StructuralObject.SetValidValue(value); ReportPropertyChanged("Row"); OnRowChanged(); } } private Nullable _Row; partial void OnRowChanging(Nullable value); partial void OnRowChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable Lane { get { return _Lane; } set { OnLaneChanging(value); ReportPropertyChanging("Lane"); _Lane = StructuralObject.SetValidValue(value); ReportPropertyChanged("Lane"); OnLaneChanged(); } } private Nullable _Lane; partial void OnLaneChanging(Nullable value); partial void OnLaneChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String LocTypeCode { get { return _LocTypeCode; } set { OnLocTypeCodeChanging(value); ReportPropertyChanging("LocTypeCode"); _LocTypeCode = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("LocTypeCode"); OnLocTypeCodeChanged(); } } private global::System.String _LocTypeCode; partial void OnLocTypeCodeChanging(global::System.String value); partial void OnLocTypeCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable DeepcellNo { get { return _DeepcellNo; } set { OnDeepcellNoChanging(value); ReportPropertyChanging("DeepcellNo"); _DeepcellNo = StructuralObject.SetValidValue(value); ReportPropertyChanged("DeepcellNo"); OnDeepcellNoChanged(); } } private Nullable _DeepcellNo; partial void OnDeepcellNoChanging(Nullable value); partial void OnDeepcellNoChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String UnionCode { get { return _UnionCode; } set { OnUnionCodeChanging(value); ReportPropertyChanging("UnionCode"); _UnionCode = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("UnionCode"); OnUnionCodeChanged(); } } private global::System.String _UnionCode; partial void OnUnionCodeChanging(global::System.String value); partial void OnUnionCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String WareContainerName { get { return _WareContainerName; } set { OnWareContainerNameChanging(value); ReportPropertyChanging("WareContainerName"); _WareContainerName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("WareContainerName"); OnWareContainerNameChanged(); } } private global::System.String _WareContainerName; partial void OnWareContainerNameChanging(global::System.String value); partial void OnWareContainerNameChanged(); #endregion } /// /// 没有元数据文档可用。 /// [EdmEntityTypeAttribute(NamespaceName="TEST", Name="ware_site")] [Serializable()] [DataContractAttribute(IsReference=true)] public partial class ware_site : EntityObject { #region 工厂方法 /// /// 创建新的 ware_site 对象。 /// /// Id 属性的初始值。 /// Xcoordinate 属性的初始值。 /// Ycoordinate 属性的初始值。 public static ware_site Createware_site(global::System.Int64 id, global::System.Decimal xcoordinate, global::System.Decimal ycoordinate) { ware_site ware_site = new ware_site(); ware_site.Id = id; ware_site.Xcoordinate = xcoordinate; ware_site.Ycoordinate = ycoordinate; return ware_site; } #endregion #region 基元属性 /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 Id { get { return _Id; } set { if (_Id != value) { OnIdChanging(value); ReportPropertyChanging("Id"); _Id = StructuralObject.SetValidValue(value); ReportPropertyChanged("Id"); OnIdChanged(); } } } private global::System.Int64 _Id; partial void OnIdChanging(global::System.Int64 value); partial void OnIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Code { get { return _Code; } set { OnCodeChanging(value); ReportPropertyChanging("Code"); _Code = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Code"); OnCodeChanged(); } } private global::System.String _Code; partial void OnCodeChanging(global::System.String value); partial void OnCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Describe { get { return _Describe; } set { OnDescribeChanging(value); ReportPropertyChanging("Describe"); _Describe = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Describe"); OnDescribeChanged(); } } private global::System.String _Describe; partial void OnDescribeChanging(global::System.String value); partial void OnDescribeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Decimal Xcoordinate { get { return _Xcoordinate; } set { if (_Xcoordinate != value) { OnXcoordinateChanging(value); ReportPropertyChanging("Xcoordinate"); _Xcoordinate = StructuralObject.SetValidValue(value); ReportPropertyChanged("Xcoordinate"); OnXcoordinateChanged(); } } } private global::System.Decimal _Xcoordinate; partial void OnXcoordinateChanging(global::System.Decimal value); partial void OnXcoordinateChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Decimal Ycoordinate { get { return _Ycoordinate; } set { if (_Ycoordinate != value) { OnYcoordinateChanging(value); ReportPropertyChanging("Ycoordinate"); _Ycoordinate = StructuralObject.SetValidValue(value); ReportPropertyChanged("Ycoordinate"); OnYcoordinateChanged(); } } } private global::System.Decimal _Ycoordinate; partial void OnYcoordinateChanging(global::System.Decimal value); partial void OnYcoordinateChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable Status { get { return _Status; } set { OnStatusChanging(value); ReportPropertyChanging("Status"); _Status = StructuralObject.SetValidValue(value); ReportPropertyChanged("Status"); OnStatusChanged(); } } private Nullable _Status; partial void OnStatusChanging(Nullable value); partial void OnStatusChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedTime { get { return _CreatedTime; } set { OnCreatedTimeChanging(value); ReportPropertyChanging("CreatedTime"); _CreatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedTime"); OnCreatedTimeChanged(); } } private Nullable _CreatedTime; partial void OnCreatedTimeChanging(Nullable value); partial void OnCreatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedTime { get { return _UpdatedTime; } set { OnUpdatedTimeChanging(value); ReportPropertyChanging("UpdatedTime"); _UpdatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedTime"); OnUpdatedTimeChanged(); } } private Nullable _UpdatedTime; partial void OnUpdatedTimeChanging(Nullable value); partial void OnUpdatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedUserId { get { return _CreatedUserId; } set { OnCreatedUserIdChanging(value); ReportPropertyChanging("CreatedUserId"); _CreatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedUserId"); OnCreatedUserIdChanged(); } } private Nullable _CreatedUserId; partial void OnCreatedUserIdChanging(Nullable value); partial void OnCreatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable TenantId { get { return _TenantId; } set { OnTenantIdChanging(value); ReportPropertyChanging("TenantId"); _TenantId = StructuralObject.SetValidValue(value); ReportPropertyChanged("TenantId"); OnTenantIdChanged(); } } private Nullable _TenantId; partial void OnTenantIdChanging(Nullable value); partial void OnTenantIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String CreatedUserName { get { return _CreatedUserName; } set { OnCreatedUserNameChanging(value); ReportPropertyChanging("CreatedUserName"); _CreatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("CreatedUserName"); OnCreatedUserNameChanged(); } } private global::System.String _CreatedUserName; partial void OnCreatedUserNameChanging(global::System.String value); partial void OnCreatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedUserId { get { return _UpdatedUserId; } set { OnUpdatedUserIdChanging(value); ReportPropertyChanging("UpdatedUserId"); _UpdatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedUserId"); OnUpdatedUserIdChanged(); } } private Nullable _UpdatedUserId; partial void OnUpdatedUserIdChanging(Nullable value); partial void OnUpdatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String UpdatedUserName { get { return _UpdatedUserName; } set { OnUpdatedUserNameChanging(value); ReportPropertyChanging("UpdatedUserName"); _UpdatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("UpdatedUserName"); OnUpdatedUserNameChanged(); } } private global::System.String _UpdatedUserName; partial void OnUpdatedUserNameChanging(global::System.String value); partial void OnUpdatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable IsDeleted { get { return _IsDeleted; } set { OnIsDeletedChanging(value); ReportPropertyChanging("IsDeleted"); _IsDeleted = StructuralObject.SetValidValue(value); ReportPropertyChanged("IsDeleted"); OnIsDeletedChanged(); } } private Nullable _IsDeleted; partial void OnIsDeletedChanging(Nullable value); partial void OnIsDeletedChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Name { get { return _Name; } set { OnNameChanging(value); ReportPropertyChanging("Name"); _Name = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Name"); OnNameChanged(); } } private global::System.String _Name; partial void OnNameChanging(global::System.String value); partial void OnNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable SiteType { get { return _SiteType; } set { OnSiteTypeChanging(value); ReportPropertyChanging("SiteType"); _SiteType = StructuralObject.SetValidValue(value); ReportPropertyChanged("SiteType"); OnSiteTypeChanged(); } } private Nullable _SiteType; partial void OnSiteTypeChanging(Nullable value); partial void OnSiteTypeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable Lane { get { return _Lane; } set { OnLaneChanging(value); ReportPropertyChanging("Lane"); _Lane = StructuralObject.SetValidValue(value); ReportPropertyChanged("Lane"); OnLaneChanged(); } } private Nullable _Lane; partial void OnLaneChanging(Nullable value); partial void OnLaneChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String OperationRemarks { get { return _OperationRemarks; } set { OnOperationRemarksChanging(value); ReportPropertyChanging("OperationRemarks"); _OperationRemarks = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("OperationRemarks"); OnOperationRemarksChanged(); } } private global::System.String _OperationRemarks; partial void OnOperationRemarksChanging(global::System.String value); partial void OnOperationRemarksChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable LineType { get { return _LineType; } set { OnLineTypeChanging(value); ReportPropertyChanging("LineType"); _LineType = StructuralObject.SetValidValue(value); ReportPropertyChanged("LineType"); OnLineTypeChanged(); } } private Nullable _LineType; partial void OnLineTypeChanging(Nullable value); partial void OnLineTypeChanged(); #endregion } /// /// 没有元数据文档可用。 /// [EdmEntityTypeAttribute(NamespaceName="TEST", Name="ware_task")] [Serializable()] [DataContractAttribute(IsReference=true)] public partial class ware_task : EntityObject { #region 工厂方法 /// /// 创建新的 ware_task 对象。 /// /// Id 属性的初始值。 /// IsDeleted 属性的初始值。 public static ware_task Createware_task(global::System.Int64 id, global::System.Boolean isDeleted) { ware_task ware_task = new ware_task(); ware_task.Id = id; ware_task.IsDeleted = isDeleted; return ware_task; } #endregion #region 基元属性 /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 Id { get { return _Id; } set { if (_Id != value) { OnIdChanging(value); ReportPropertyChanging("Id"); _Id = StructuralObject.SetValidValue(value); ReportPropertyChanged("Id"); OnIdChanged(); } } } private global::System.Int64 _Id; partial void OnIdChanging(global::System.Int64 value); partial void OnIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String OrderNo { get { return _OrderNo; } set { OnOrderNoChanging(value); ReportPropertyChanging("OrderNo"); _OrderNo = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("OrderNo"); OnOrderNoChanged(); } } private global::System.String _OrderNo; partial void OnOrderNoChanging(global::System.String value); partial void OnOrderNoChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String TaskNo { get { return _TaskNo; } set { OnTaskNoChanging(value); ReportPropertyChanging("TaskNo"); _TaskNo = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("TaskNo"); OnTaskNoChanged(); } } private global::System.String _TaskNo; partial void OnTaskNoChanging(global::System.String value); partial void OnTaskNoChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String TaskName { get { return _TaskName; } set { OnTaskNameChanging(value); ReportPropertyChanging("TaskName"); _TaskName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("TaskName"); OnTaskNameChanged(); } } private global::System.String _TaskName; partial void OnTaskNameChanging(global::System.String value); partial void OnTaskNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable TaskCategory { get { return _TaskCategory; } set { OnTaskCategoryChanging(value); ReportPropertyChanging("TaskCategory"); _TaskCategory = StructuralObject.SetValidValue(value); ReportPropertyChanged("TaskCategory"); OnTaskCategoryChanged(); } } private Nullable _TaskCategory; partial void OnTaskCategoryChanging(Nullable value); partial void OnTaskCategoryChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable TaskType { get { return _TaskType; } set { OnTaskTypeChanging(value); ReportPropertyChanging("TaskType"); _TaskType = StructuralObject.SetValidValue(value); ReportPropertyChanged("TaskType"); OnTaskTypeChanged(); } } private Nullable _TaskType; partial void OnTaskTypeChanging(Nullable value); partial void OnTaskTypeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable TaskState { get { return _TaskState; } set { OnTaskStateChanging(value); ReportPropertyChanging("TaskState"); _TaskState = StructuralObject.SetValidValue(value); ReportPropertyChanged("TaskState"); OnTaskStateChanged(); } } private Nullable _TaskState; partial void OnTaskStateChanging(Nullable value); partial void OnTaskStateChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String TaskDescribe { get { return _TaskDescribe; } set { OnTaskDescribeChanging(value); ReportPropertyChanging("TaskDescribe"); _TaskDescribe = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("TaskDescribe"); OnTaskDescribeChanged(); } } private global::System.String _TaskDescribe; partial void OnTaskDescribeChanging(global::System.String value); partial void OnTaskDescribeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable TaskPriority { get { return _TaskPriority; } set { OnTaskPriorityChanging(value); ReportPropertyChanging("TaskPriority"); _TaskPriority = StructuralObject.SetValidValue(value); ReportPropertyChanged("TaskPriority"); OnTaskPriorityChanged(); } } private Nullable _TaskPriority; partial void OnTaskPriorityChanging(Nullable value); partial void OnTaskPriorityChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String ContainerCode { get { return _ContainerCode; } set { OnContainerCodeChanging(value); ReportPropertyChanging("ContainerCode"); _ContainerCode = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("ContainerCode"); OnContainerCodeChanged(); } } private global::System.String _ContainerCode; partial void OnContainerCodeChanging(global::System.String value); partial void OnContainerCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String FromLocationCode { get { return _FromLocationCode; } set { OnFromLocationCodeChanging(value); ReportPropertyChanging("FromLocationCode"); _FromLocationCode = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("FromLocationCode"); OnFromLocationCodeChanged(); } } private global::System.String _FromLocationCode; partial void OnFromLocationCodeChanging(global::System.String value); partial void OnFromLocationCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String ToLocationCode { get { return _ToLocationCode; } set { OnToLocationCodeChanging(value); ReportPropertyChanging("ToLocationCode"); _ToLocationCode = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("ToLocationCode"); OnToLocationCodeChanged(); } } private global::System.String _ToLocationCode; partial void OnToLocationCodeChanging(global::System.String value); partial void OnToLocationCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable FinishedTime { get { return _FinishedTime; } set { OnFinishedTimeChanging(value); ReportPropertyChanging("FinishedTime"); _FinishedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("FinishedTime"); OnFinishedTimeChanged(); } } private Nullable _FinishedTime; partial void OnFinishedTimeChanging(Nullable value); partial void OnFinishedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedUserId { get { return _UpdatedUserId; } set { OnUpdatedUserIdChanging(value); ReportPropertyChanging("UpdatedUserId"); _UpdatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedUserId"); OnUpdatedUserIdChanged(); } } private Nullable _UpdatedUserId; partial void OnUpdatedUserIdChanging(Nullable value); partial void OnUpdatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String UpdatedUserName { get { return _UpdatedUserName; } set { OnUpdatedUserNameChanging(value); ReportPropertyChanging("UpdatedUserName"); _UpdatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("UpdatedUserName"); OnUpdatedUserNameChanged(); } } private global::System.String _UpdatedUserName; partial void OnUpdatedUserNameChanging(global::System.String value); partial void OnUpdatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedTime { get { return _UpdatedTime; } set { OnUpdatedTimeChanging(value); ReportPropertyChanging("UpdatedTime"); _UpdatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedTime"); OnUpdatedTimeChanged(); } } private Nullable _UpdatedTime; partial void OnUpdatedTimeChanging(Nullable value); partial void OnUpdatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedUserId { get { return _CreatedUserId; } set { OnCreatedUserIdChanging(value); ReportPropertyChanging("CreatedUserId"); _CreatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedUserId"); OnCreatedUserIdChanged(); } } private Nullable _CreatedUserId; partial void OnCreatedUserIdChanging(Nullable value); partial void OnCreatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String CreatedUserName { get { return _CreatedUserName; } set { OnCreatedUserNameChanging(value); ReportPropertyChanging("CreatedUserName"); _CreatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("CreatedUserName"); OnCreatedUserNameChanged(); } } private global::System.String _CreatedUserName; partial void OnCreatedUserNameChanging(global::System.String value); partial void OnCreatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedTime { get { return _CreatedTime; } set { OnCreatedTimeChanging(value); ReportPropertyChanging("CreatedTime"); _CreatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedTime"); OnCreatedTimeChanged(); } } private Nullable _CreatedTime; partial void OnCreatedTimeChanging(Nullable value); partial void OnCreatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Boolean IsDeleted { get { return _IsDeleted; } set { OnIsDeletedChanging(value); ReportPropertyChanging("IsDeleted"); _IsDeleted = StructuralObject.SetValidValue(value); ReportPropertyChanged("IsDeleted"); OnIsDeletedChanged(); } } private global::System.Boolean _IsDeleted; partial void OnIsDeletedChanging(global::System.Boolean value); partial void OnIsDeletedChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable Lane { get { return _Lane; } set { OnLaneChanging(value); ReportPropertyChanging("Lane"); _Lane = StructuralObject.SetValidValue(value); ReportPropertyChanged("Lane"); OnLaneChanged(); } } private Nullable _Lane; partial void OnLaneChanging(Nullable value); partial void OnLaneChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable MoveFlag { get { return _MoveFlag; } set { OnMoveFlagChanging(value); ReportPropertyChanging("MoveFlag"); _MoveFlag = StructuralObject.SetValidValue(value); ReportPropertyChanged("MoveFlag"); OnMoveFlagChanged(); } } private Nullable _MoveFlag; partial void OnMoveFlagChanging(Nullable value); partial void OnMoveFlagChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String MoveFromLocation { get { return _MoveFromLocation; } set { OnMoveFromLocationChanging(value); ReportPropertyChanging("MoveFromLocation"); _MoveFromLocation = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("MoveFromLocation"); OnMoveFromLocationChanged(); } } private global::System.String _MoveFromLocation; partial void OnMoveFromLocationChanging(global::System.String value); partial void OnMoveFromLocationChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String MoveToLocation { get { return _MoveToLocation; } set { OnMoveToLocationChanging(value); ReportPropertyChanging("MoveToLocation"); _MoveToLocation = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("MoveToLocation"); OnMoveToLocationChanged(); } } private global::System.String _MoveToLocation; partial void OnMoveToLocationChanging(global::System.String value); partial void OnMoveToLocationChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String MoveContainerCode { get { return _MoveContainerCode; } set { OnMoveContainerCodeChanging(value); ReportPropertyChanging("MoveContainerCode"); _MoveContainerCode = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("MoveContainerCode"); OnMoveContainerCodeChanged(); } } private global::System.String _MoveContainerCode; partial void OnMoveContainerCodeChanging(global::System.String value); partial void OnMoveContainerCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable ContainerType { get { return _ContainerType; } set { OnContainerTypeChanging(value); ReportPropertyChanging("ContainerType"); _ContainerType = StructuralObject.SetValidValue(value); ReportPropertyChanged("ContainerType"); OnContainerTypeChanged(); } } private Nullable _ContainerType; partial void OnContainerTypeChanging(Nullable value); partial void OnContainerTypeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String OperationRemark { get { return _OperationRemark; } set { OnOperationRemarkChanging(value); ReportPropertyChanging("OperationRemark"); _OperationRemark = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("OperationRemark"); OnOperationRemarkChanged(); } } private global::System.String _OperationRemark; partial void OnOperationRemarkChanging(global::System.String value); partial void OnOperationRemarkChanged(); #endregion } /// /// 没有元数据文档可用。 /// [EdmEntityTypeAttribute(NamespaceName="TEST", Name="ware_task_bak")] [Serializable()] [DataContractAttribute(IsReference=true)] public partial class ware_task_bak : EntityObject { #region 工厂方法 /// /// 创建新的 ware_task_bak 对象。 /// /// Id 属性的初始值。 /// TaskCategory 属性的初始值。 /// TaskType 属性的初始值。 /// TaskState 属性的初始值。 /// TaskPriority 属性的初始值。 /// IsDeleted 属性的初始值。 public static ware_task_bak Createware_task_bak(global::System.Int64 id, global::System.Int32 taskCategory, global::System.Int32 taskType, global::System.Int32 taskState, global::System.Int32 taskPriority, global::System.Boolean isDeleted) { ware_task_bak ware_task_bak = new ware_task_bak(); ware_task_bak.Id = id; ware_task_bak.TaskCategory = taskCategory; ware_task_bak.TaskType = taskType; ware_task_bak.TaskState = taskState; ware_task_bak.TaskPriority = taskPriority; ware_task_bak.IsDeleted = isDeleted; return ware_task_bak; } #endregion #region 基元属性 /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 Id { get { return _Id; } set { if (_Id != value) { OnIdChanging(value); ReportPropertyChanging("Id"); _Id = StructuralObject.SetValidValue(value); ReportPropertyChanged("Id"); OnIdChanged(); } } } private global::System.Int64 _Id; partial void OnIdChanging(global::System.Int64 value); partial void OnIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String OrderNo { get { return _OrderNo; } set { OnOrderNoChanging(value); ReportPropertyChanging("OrderNo"); _OrderNo = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("OrderNo"); OnOrderNoChanged(); } } private global::System.String _OrderNo; partial void OnOrderNoChanging(global::System.String value); partial void OnOrderNoChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String TaskNo { get { return _TaskNo; } set { OnTaskNoChanging(value); ReportPropertyChanging("TaskNo"); _TaskNo = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("TaskNo"); OnTaskNoChanged(); } } private global::System.String _TaskNo; partial void OnTaskNoChanging(global::System.String value); partial void OnTaskNoChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String TaskName { get { return _TaskName; } set { OnTaskNameChanging(value); ReportPropertyChanging("TaskName"); _TaskName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("TaskName"); OnTaskNameChanged(); } } private global::System.String _TaskName; partial void OnTaskNameChanging(global::System.String value); partial void OnTaskNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 TaskCategory { get { return _TaskCategory; } set { OnTaskCategoryChanging(value); ReportPropertyChanging("TaskCategory"); _TaskCategory = StructuralObject.SetValidValue(value); ReportPropertyChanged("TaskCategory"); OnTaskCategoryChanged(); } } private global::System.Int32 _TaskCategory; partial void OnTaskCategoryChanging(global::System.Int32 value); partial void OnTaskCategoryChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 TaskType { get { return _TaskType; } set { OnTaskTypeChanging(value); ReportPropertyChanging("TaskType"); _TaskType = StructuralObject.SetValidValue(value); ReportPropertyChanged("TaskType"); OnTaskTypeChanged(); } } private global::System.Int32 _TaskType; partial void OnTaskTypeChanging(global::System.Int32 value); partial void OnTaskTypeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 TaskState { get { return _TaskState; } set { OnTaskStateChanging(value); ReportPropertyChanging("TaskState"); _TaskState = StructuralObject.SetValidValue(value); ReportPropertyChanged("TaskState"); OnTaskStateChanged(); } } private global::System.Int32 _TaskState; partial void OnTaskStateChanging(global::System.Int32 value); partial void OnTaskStateChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String TaskDescribe { get { return _TaskDescribe; } set { OnTaskDescribeChanging(value); ReportPropertyChanging("TaskDescribe"); _TaskDescribe = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("TaskDescribe"); OnTaskDescribeChanged(); } } private global::System.String _TaskDescribe; partial void OnTaskDescribeChanging(global::System.String value); partial void OnTaskDescribeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 TaskPriority { get { return _TaskPriority; } set { OnTaskPriorityChanging(value); ReportPropertyChanging("TaskPriority"); _TaskPriority = StructuralObject.SetValidValue(value); ReportPropertyChanged("TaskPriority"); OnTaskPriorityChanged(); } } private global::System.Int32 _TaskPriority; partial void OnTaskPriorityChanging(global::System.Int32 value); partial void OnTaskPriorityChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String ContainerCode { get { return _ContainerCode; } set { OnContainerCodeChanging(value); ReportPropertyChanging("ContainerCode"); _ContainerCode = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("ContainerCode"); OnContainerCodeChanged(); } } private global::System.String _ContainerCode; partial void OnContainerCodeChanging(global::System.String value); partial void OnContainerCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String FromLocationCode { get { return _FromLocationCode; } set { OnFromLocationCodeChanging(value); ReportPropertyChanging("FromLocationCode"); _FromLocationCode = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("FromLocationCode"); OnFromLocationCodeChanged(); } } private global::System.String _FromLocationCode; partial void OnFromLocationCodeChanging(global::System.String value); partial void OnFromLocationCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String ToLocationCode { get { return _ToLocationCode; } set { OnToLocationCodeChanging(value); ReportPropertyChanging("ToLocationCode"); _ToLocationCode = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("ToLocationCode"); OnToLocationCodeChanged(); } } private global::System.String _ToLocationCode; partial void OnToLocationCodeChanging(global::System.String value); partial void OnToLocationCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable FinishedTime { get { return _FinishedTime; } set { OnFinishedTimeChanging(value); ReportPropertyChanging("FinishedTime"); _FinishedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("FinishedTime"); OnFinishedTimeChanged(); } } private Nullable _FinishedTime; partial void OnFinishedTimeChanging(Nullable value); partial void OnFinishedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable Lane { get { return _Lane; } set { OnLaneChanging(value); ReportPropertyChanging("Lane"); _Lane = StructuralObject.SetValidValue(value); ReportPropertyChanged("Lane"); OnLaneChanged(); } } private Nullable _Lane; partial void OnLaneChanging(Nullable value); partial void OnLaneChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable MoveFlag { get { return _MoveFlag; } set { OnMoveFlagChanging(value); ReportPropertyChanging("MoveFlag"); _MoveFlag = StructuralObject.SetValidValue(value); ReportPropertyChanged("MoveFlag"); OnMoveFlagChanged(); } } private Nullable _MoveFlag; partial void OnMoveFlagChanging(Nullable value); partial void OnMoveFlagChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String MoveFromLocation { get { return _MoveFromLocation; } set { OnMoveFromLocationChanging(value); ReportPropertyChanging("MoveFromLocation"); _MoveFromLocation = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("MoveFromLocation"); OnMoveFromLocationChanged(); } } private global::System.String _MoveFromLocation; partial void OnMoveFromLocationChanging(global::System.String value); partial void OnMoveFromLocationChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String MoveToLocation { get { return _MoveToLocation; } set { OnMoveToLocationChanging(value); ReportPropertyChanging("MoveToLocation"); _MoveToLocation = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("MoveToLocation"); OnMoveToLocationChanged(); } } private global::System.String _MoveToLocation; partial void OnMoveToLocationChanging(global::System.String value); partial void OnMoveToLocationChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String MoveContainerCode { get { return _MoveContainerCode; } set { OnMoveContainerCodeChanging(value); ReportPropertyChanging("MoveContainerCode"); _MoveContainerCode = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("MoveContainerCode"); OnMoveContainerCodeChanged(); } } private global::System.String _MoveContainerCode; partial void OnMoveContainerCodeChanging(global::System.String value); partial void OnMoveContainerCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable ContainerType { get { return _ContainerType; } set { OnContainerTypeChanging(value); ReportPropertyChanging("ContainerType"); _ContainerType = StructuralObject.SetValidValue(value); ReportPropertyChanged("ContainerType"); OnContainerTypeChanged(); } } private Nullable _ContainerType; partial void OnContainerTypeChanging(Nullable value); partial void OnContainerTypeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedTime { get { return _CreatedTime; } set { OnCreatedTimeChanging(value); ReportPropertyChanging("CreatedTime"); _CreatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedTime"); OnCreatedTimeChanged(); } } private Nullable _CreatedTime; partial void OnCreatedTimeChanging(Nullable value); partial void OnCreatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedTime { get { return _UpdatedTime; } set { OnUpdatedTimeChanging(value); ReportPropertyChanging("UpdatedTime"); _UpdatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedTime"); OnUpdatedTimeChanged(); } } private Nullable _UpdatedTime; partial void OnUpdatedTimeChanging(Nullable value); partial void OnUpdatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedUserId { get { return _CreatedUserId; } set { OnCreatedUserIdChanging(value); ReportPropertyChanging("CreatedUserId"); _CreatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedUserId"); OnCreatedUserIdChanged(); } } private Nullable _CreatedUserId; partial void OnCreatedUserIdChanging(Nullable value); partial void OnCreatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String CreatedUserName { get { return _CreatedUserName; } set { OnCreatedUserNameChanging(value); ReportPropertyChanging("CreatedUserName"); _CreatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("CreatedUserName"); OnCreatedUserNameChanged(); } } private global::System.String _CreatedUserName; partial void OnCreatedUserNameChanging(global::System.String value); partial void OnCreatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedUserId { get { return _UpdatedUserId; } set { OnUpdatedUserIdChanging(value); ReportPropertyChanging("UpdatedUserId"); _UpdatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedUserId"); OnUpdatedUserIdChanged(); } } private Nullable _UpdatedUserId; partial void OnUpdatedUserIdChanging(Nullable value); partial void OnUpdatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String UpdatedUserName { get { return _UpdatedUserName; } set { OnUpdatedUserNameChanging(value); ReportPropertyChanging("UpdatedUserName"); _UpdatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("UpdatedUserName"); OnUpdatedUserNameChanged(); } } private global::System.String _UpdatedUserName; partial void OnUpdatedUserNameChanging(global::System.String value); partial void OnUpdatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Boolean IsDeleted { get { return _IsDeleted; } set { OnIsDeletedChanging(value); ReportPropertyChanging("IsDeleted"); _IsDeleted = StructuralObject.SetValidValue(value); ReportPropertyChanged("IsDeleted"); OnIsDeletedChanged(); } } private global::System.Boolean _IsDeleted; partial void OnIsDeletedChanging(global::System.Boolean value); partial void OnIsDeletedChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String OperationRemark { get { return _OperationRemark; } set { OnOperationRemarkChanging(value); ReportPropertyChanging("OperationRemark"); _OperationRemark = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("OperationRemark"); OnOperationRemarkChanged(); } } private global::System.String _OperationRemark; partial void OnOperationRemarkChanging(global::System.String value); partial void OnOperationRemarkChanged(); #endregion } /// /// 没有元数据文档可用。 /// [EdmEntityTypeAttribute(NamespaceName="TEST", Name="ware_task_sub")] [Serializable()] [DataContractAttribute(IsReference=true)] public partial class ware_task_sub : EntityObject { #region 工厂方法 /// /// 创建新的 ware_task_sub 对象。 /// /// Id 属性的初始值。 /// IsDeleted 属性的初始值。 public static ware_task_sub Createware_task_sub(global::System.Int64 id, global::System.Boolean isDeleted) { ware_task_sub ware_task_sub = new ware_task_sub(); ware_task_sub.Id = id; ware_task_sub.IsDeleted = isDeleted; return ware_task_sub; } #endregion #region 基元属性 /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 Id { get { return _Id; } set { if (_Id != value) { OnIdChanging(value); ReportPropertyChanging("Id"); _Id = StructuralObject.SetValidValue(value); ReportPropertyChanged("Id"); OnIdChanged(); } } } private global::System.Int64 _Id; partial void OnIdChanging(global::System.Int64 value); partial void OnIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String OrderNo { get { return _OrderNo; } set { OnOrderNoChanging(value); ReportPropertyChanging("OrderNo"); _OrderNo = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("OrderNo"); OnOrderNoChanged(); } } private global::System.String _OrderNo; partial void OnOrderNoChanging(global::System.String value); partial void OnOrderNoChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable WCSTaskId { get { return _WCSTaskId; } set { OnWCSTaskIdChanging(value); ReportPropertyChanging("WCSTaskId"); _WCSTaskId = StructuralObject.SetValidValue(value); ReportPropertyChanged("WCSTaskId"); OnWCSTaskIdChanged(); } } private Nullable _WCSTaskId; partial void OnWCSTaskIdChanging(Nullable value); partial void OnWCSTaskIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable TaskId { get { return _TaskId; } set { OnTaskIdChanging(value); ReportPropertyChanging("TaskId"); _TaskId = StructuralObject.SetValidValue(value); ReportPropertyChanged("TaskId"); OnTaskIdChanged(); } } private Nullable _TaskId; partial void OnTaskIdChanging(Nullable value); partial void OnTaskIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String TaskNo { get { return _TaskNo; } set { OnTaskNoChanging(value); ReportPropertyChanging("TaskNo"); _TaskNo = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("TaskNo"); OnTaskNoChanged(); } } private global::System.String _TaskNo; partial void OnTaskNoChanging(global::System.String value); partial void OnTaskNoChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable TaskSequence { get { return _TaskSequence; } set { OnTaskSequenceChanging(value); ReportPropertyChanging("TaskSequence"); _TaskSequence = StructuralObject.SetValidValue(value); ReportPropertyChanged("TaskSequence"); OnTaskSequenceChanged(); } } private Nullable _TaskSequence; partial void OnTaskSequenceChanging(Nullable value); partial void OnTaskSequenceChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String TaskDescribe { get { return _TaskDescribe; } set { OnTaskDescribeChanging(value); ReportPropertyChanging("TaskDescribe"); _TaskDescribe = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("TaskDescribe"); OnTaskDescribeChanged(); } } private global::System.String _TaskDescribe; partial void OnTaskDescribeChanging(global::System.String value); partial void OnTaskDescribeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable TaskState { get { return _TaskState; } set { OnTaskStateChanging(value); ReportPropertyChanging("TaskState"); _TaskState = StructuralObject.SetValidValue(value); ReportPropertyChanged("TaskState"); OnTaskStateChanged(); } } private Nullable _TaskState; partial void OnTaskStateChanging(Nullable value); partial void OnTaskStateChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String DeviceType { get { return _DeviceType; } set { OnDeviceTypeChanging(value); ReportPropertyChanging("DeviceType"); _DeviceType = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("DeviceType"); OnDeviceTypeChanged(); } } private global::System.String _DeviceType; partial void OnDeviceTypeChanging(global::System.String value); partial void OnDeviceTypeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable DeviceId { get { return _DeviceId; } set { OnDeviceIdChanging(value); ReportPropertyChanging("DeviceId"); _DeviceId = StructuralObject.SetValidValue(value); ReportPropertyChanged("DeviceId"); OnDeviceIdChanged(); } } private Nullable _DeviceId; partial void OnDeviceIdChanging(Nullable value); partial void OnDeviceIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String ContainerCode { get { return _ContainerCode; } set { OnContainerCodeChanging(value); ReportPropertyChanging("ContainerCode"); _ContainerCode = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("ContainerCode"); OnContainerCodeChanged(); } } private global::System.String _ContainerCode; partial void OnContainerCodeChanging(global::System.String value); partial void OnContainerCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable TaskType { get { return _TaskType; } set { OnTaskTypeChanging(value); ReportPropertyChanging("TaskType"); _TaskType = StructuralObject.SetValidValue(value); ReportPropertyChanged("TaskType"); OnTaskTypeChanged(); } } private Nullable _TaskType; partial void OnTaskTypeChanging(Nullable value); partial void OnTaskTypeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String SourcePlace { get { return _SourcePlace; } set { OnSourcePlaceChanging(value); ReportPropertyChanging("SourcePlace"); _SourcePlace = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("SourcePlace"); OnSourcePlaceChanged(); } } private global::System.String _SourcePlace; partial void OnSourcePlaceChanging(global::System.String value); partial void OnSourcePlaceChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable FromLane { get { return _FromLane; } set { OnFromLaneChanging(value); ReportPropertyChanging("FromLane"); _FromLane = StructuralObject.SetValidValue(value); ReportPropertyChanged("FromLane"); OnFromLaneChanged(); } } private Nullable _FromLane; partial void OnFromLaneChanging(Nullable value); partial void OnFromLaneChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable FromLayer { get { return _FromLayer; } set { OnFromLayerChanging(value); ReportPropertyChanging("FromLayer"); _FromLayer = StructuralObject.SetValidValue(value); ReportPropertyChanged("FromLayer"); OnFromLayerChanged(); } } private Nullable _FromLayer; partial void OnFromLayerChanging(Nullable value); partial void OnFromLayerChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable FromRow { get { return _FromRow; } set { OnFromRowChanging(value); ReportPropertyChanging("FromRow"); _FromRow = StructuralObject.SetValidValue(value); ReportPropertyChanged("FromRow"); OnFromRowChanged(); } } private Nullable _FromRow; partial void OnFromRowChanging(Nullable value); partial void OnFromRowChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable FromCol { get { return _FromCol; } set { OnFromColChanging(value); ReportPropertyChanging("FromCol"); _FromCol = StructuralObject.SetValidValue(value); ReportPropertyChanged("FromCol"); OnFromColChanged(); } } private Nullable _FromCol; partial void OnFromColChanging(Nullable value); partial void OnFromColChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String ToPlace { get { return _ToPlace; } set { OnToPlaceChanging(value); ReportPropertyChanging("ToPlace"); _ToPlace = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("ToPlace"); OnToPlaceChanged(); } } private global::System.String _ToPlace; partial void OnToPlaceChanging(global::System.String value); partial void OnToPlaceChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable ToLane { get { return _ToLane; } set { OnToLaneChanging(value); ReportPropertyChanging("ToLane"); _ToLane = StructuralObject.SetValidValue(value); ReportPropertyChanged("ToLane"); OnToLaneChanged(); } } private Nullable _ToLane; partial void OnToLaneChanging(Nullable value); partial void OnToLaneChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable ToLayer { get { return _ToLayer; } set { OnToLayerChanging(value); ReportPropertyChanging("ToLayer"); _ToLayer = StructuralObject.SetValidValue(value); ReportPropertyChanged("ToLayer"); OnToLayerChanged(); } } private Nullable _ToLayer; partial void OnToLayerChanging(Nullable value); partial void OnToLayerChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable ToCol { get { return _ToCol; } set { OnToColChanging(value); ReportPropertyChanging("ToCol"); _ToCol = StructuralObject.SetValidValue(value); ReportPropertyChanged("ToCol"); OnToColChanged(); } } private Nullable _ToCol; partial void OnToColChanging(Nullable value); partial void OnToColChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable ToRow { get { return _ToRow; } set { OnToRowChanging(value); ReportPropertyChanging("ToRow"); _ToRow = StructuralObject.SetValidValue(value); ReportPropertyChanged("ToRow"); OnToRowChanged(); } } private Nullable _ToRow; partial void OnToRowChanging(Nullable value); partial void OnToRowChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable FinishedTime { get { return _FinishedTime; } set { OnFinishedTimeChanging(value); ReportPropertyChanging("FinishedTime"); _FinishedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("FinishedTime"); OnFinishedTimeChanged(); } } private Nullable _FinishedTime; partial void OnFinishedTimeChanging(Nullable value); partial void OnFinishedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedUserId { get { return _UpdatedUserId; } set { OnUpdatedUserIdChanging(value); ReportPropertyChanging("UpdatedUserId"); _UpdatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedUserId"); OnUpdatedUserIdChanged(); } } private Nullable _UpdatedUserId; partial void OnUpdatedUserIdChanging(Nullable value); partial void OnUpdatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String UpdatedUserName { get { return _UpdatedUserName; } set { OnUpdatedUserNameChanging(value); ReportPropertyChanging("UpdatedUserName"); _UpdatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("UpdatedUserName"); OnUpdatedUserNameChanged(); } } private global::System.String _UpdatedUserName; partial void OnUpdatedUserNameChanging(global::System.String value); partial void OnUpdatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedTime { get { return _UpdatedTime; } set { OnUpdatedTimeChanging(value); ReportPropertyChanging("UpdatedTime"); _UpdatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedTime"); OnUpdatedTimeChanged(); } } private Nullable _UpdatedTime; partial void OnUpdatedTimeChanging(Nullable value); partial void OnUpdatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedUserId { get { return _CreatedUserId; } set { OnCreatedUserIdChanging(value); ReportPropertyChanging("CreatedUserId"); _CreatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedUserId"); OnCreatedUserIdChanged(); } } private Nullable _CreatedUserId; partial void OnCreatedUserIdChanging(Nullable value); partial void OnCreatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String CreatedUserName { get { return _CreatedUserName; } set { OnCreatedUserNameChanging(value); ReportPropertyChanging("CreatedUserName"); _CreatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("CreatedUserName"); OnCreatedUserNameChanged(); } } private global::System.String _CreatedUserName; partial void OnCreatedUserNameChanging(global::System.String value); partial void OnCreatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedTime { get { return _CreatedTime; } set { OnCreatedTimeChanging(value); ReportPropertyChanging("CreatedTime"); _CreatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedTime"); OnCreatedTimeChanged(); } } private Nullable _CreatedTime; partial void OnCreatedTimeChanging(Nullable value); partial void OnCreatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Boolean IsDeleted { get { return _IsDeleted; } set { OnIsDeletedChanging(value); ReportPropertyChanging("IsDeleted"); _IsDeleted = StructuralObject.SetValidValue(value); ReportPropertyChanged("IsDeleted"); OnIsDeletedChanged(); } } private global::System.Boolean _IsDeleted; partial void OnIsDeletedChanging(global::System.Boolean value); partial void OnIsDeletedChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String OperationRemark { get { return _OperationRemark; } set { OnOperationRemarkChanging(value); ReportPropertyChanging("OperationRemark"); _OperationRemark = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("OperationRemark"); OnOperationRemarkChanged(); } } private global::System.String _OperationRemark; partial void OnOperationRemarkChanging(global::System.String value); partial void OnOperationRemarkChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable ContainerType { get { return _ContainerType; } set { OnContainerTypeChanging(value); ReportPropertyChanging("ContainerType"); _ContainerType = StructuralObject.SetValidValue(value); ReportPropertyChanged("ContainerType"); OnContainerTypeChanged(); } } private Nullable _ContainerType; partial void OnContainerTypeChanging(Nullable value); partial void OnContainerTypeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String AgvTaskCode { get { return _AgvTaskCode; } set { OnAgvTaskCodeChanging(value); ReportPropertyChanging("AgvTaskCode"); _AgvTaskCode = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("AgvTaskCode"); OnAgvTaskCodeChanged(); } } private global::System.String _AgvTaskCode; partial void OnAgvTaskCodeChanging(global::System.String value); partial void OnAgvTaskCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String AgvCode { get { return _AgvCode; } set { OnAgvCodeChanging(value); ReportPropertyChanging("AgvCode"); _AgvCode = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("AgvCode"); OnAgvCodeChanged(); } } private global::System.String _AgvCode; partial void OnAgvCodeChanging(global::System.String value); partial void OnAgvCodeChanged(); #endregion } /// /// 没有元数据文档可用。 /// [EdmEntityTypeAttribute(NamespaceName="TEST", Name="ware_task_sub_bak")] [Serializable()] [DataContractAttribute(IsReference=true)] public partial class ware_task_sub_bak : EntityObject { #region 工厂方法 /// /// 创建新的 ware_task_sub_bak 对象。 /// /// Id 属性的初始值。 /// TaskId 属性的初始值。 /// TaskSequence 属性的初始值。 /// TaskState 属性的初始值。 /// DeviceId 属性的初始值。 /// IsDeleted 属性的初始值。 public static ware_task_sub_bak Createware_task_sub_bak(global::System.Int64 id, global::System.Int64 taskId, global::System.Int32 taskSequence, global::System.Int32 taskState, global::System.Int32 deviceId, global::System.Boolean isDeleted) { ware_task_sub_bak ware_task_sub_bak = new ware_task_sub_bak(); ware_task_sub_bak.Id = id; ware_task_sub_bak.TaskId = taskId; ware_task_sub_bak.TaskSequence = taskSequence; ware_task_sub_bak.TaskState = taskState; ware_task_sub_bak.DeviceId = deviceId; ware_task_sub_bak.IsDeleted = isDeleted; return ware_task_sub_bak; } #endregion #region 基元属性 /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 Id { get { return _Id; } set { if (_Id != value) { OnIdChanging(value); ReportPropertyChanging("Id"); _Id = StructuralObject.SetValidValue(value); ReportPropertyChanged("Id"); OnIdChanged(); } } } private global::System.Int64 _Id; partial void OnIdChanging(global::System.Int64 value); partial void OnIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String OrderNo { get { return _OrderNo; } set { OnOrderNoChanging(value); ReportPropertyChanging("OrderNo"); _OrderNo = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("OrderNo"); OnOrderNoChanged(); } } private global::System.String _OrderNo; partial void OnOrderNoChanging(global::System.String value); partial void OnOrderNoChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 TaskId { get { return _TaskId; } set { OnTaskIdChanging(value); ReportPropertyChanging("TaskId"); _TaskId = StructuralObject.SetValidValue(value); ReportPropertyChanged("TaskId"); OnTaskIdChanged(); } } private global::System.Int64 _TaskId; partial void OnTaskIdChanging(global::System.Int64 value); partial void OnTaskIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String TaskNo { get { return _TaskNo; } set { OnTaskNoChanging(value); ReportPropertyChanging("TaskNo"); _TaskNo = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("TaskNo"); OnTaskNoChanged(); } } private global::System.String _TaskNo; partial void OnTaskNoChanging(global::System.String value); partial void OnTaskNoChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 TaskSequence { get { return _TaskSequence; } set { OnTaskSequenceChanging(value); ReportPropertyChanging("TaskSequence"); _TaskSequence = StructuralObject.SetValidValue(value); ReportPropertyChanged("TaskSequence"); OnTaskSequenceChanged(); } } private global::System.Int32 _TaskSequence; partial void OnTaskSequenceChanging(global::System.Int32 value); partial void OnTaskSequenceChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 TaskState { get { return _TaskState; } set { OnTaskStateChanging(value); ReportPropertyChanging("TaskState"); _TaskState = StructuralObject.SetValidValue(value); ReportPropertyChanged("TaskState"); OnTaskStateChanged(); } } private global::System.Int32 _TaskState; partial void OnTaskStateChanging(global::System.Int32 value); partial void OnTaskStateChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String TaskDescribe { get { return _TaskDescribe; } set { OnTaskDescribeChanging(value); ReportPropertyChanging("TaskDescribe"); _TaskDescribe = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("TaskDescribe"); OnTaskDescribeChanged(); } } private global::System.String _TaskDescribe; partial void OnTaskDescribeChanging(global::System.String value); partial void OnTaskDescribeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String DeviceType { get { return _DeviceType; } set { OnDeviceTypeChanging(value); ReportPropertyChanging("DeviceType"); _DeviceType = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("DeviceType"); OnDeviceTypeChanged(); } } private global::System.String _DeviceType; partial void OnDeviceTypeChanging(global::System.String value); partial void OnDeviceTypeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 DeviceId { get { return _DeviceId; } set { OnDeviceIdChanging(value); ReportPropertyChanging("DeviceId"); _DeviceId = StructuralObject.SetValidValue(value); ReportPropertyChanged("DeviceId"); OnDeviceIdChanged(); } } private global::System.Int32 _DeviceId; partial void OnDeviceIdChanging(global::System.Int32 value); partial void OnDeviceIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String ContainerCode { get { return _ContainerCode; } set { OnContainerCodeChanging(value); ReportPropertyChanging("ContainerCode"); _ContainerCode = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("ContainerCode"); OnContainerCodeChanged(); } } private global::System.String _ContainerCode; partial void OnContainerCodeChanging(global::System.String value); partial void OnContainerCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable FromLane { get { return _FromLane; } set { OnFromLaneChanging(value); ReportPropertyChanging("FromLane"); _FromLane = StructuralObject.SetValidValue(value); ReportPropertyChanged("FromLane"); OnFromLaneChanged(); } } private Nullable _FromLane; partial void OnFromLaneChanging(Nullable value); partial void OnFromLaneChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable FromLayer { get { return _FromLayer; } set { OnFromLayerChanging(value); ReportPropertyChanging("FromLayer"); _FromLayer = StructuralObject.SetValidValue(value); ReportPropertyChanged("FromLayer"); OnFromLayerChanged(); } } private Nullable _FromLayer; partial void OnFromLayerChanging(Nullable value); partial void OnFromLayerChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable FromCol { get { return _FromCol; } set { OnFromColChanging(value); ReportPropertyChanging("FromCol"); _FromCol = StructuralObject.SetValidValue(value); ReportPropertyChanged("FromCol"); OnFromColChanged(); } } private Nullable _FromCol; partial void OnFromColChanging(Nullable value); partial void OnFromColChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable FromRow { get { return _FromRow; } set { OnFromRowChanging(value); ReportPropertyChanging("FromRow"); _FromRow = StructuralObject.SetValidValue(value); ReportPropertyChanged("FromRow"); OnFromRowChanged(); } } private Nullable _FromRow; partial void OnFromRowChanging(Nullable value); partial void OnFromRowChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable ToLane { get { return _ToLane; } set { OnToLaneChanging(value); ReportPropertyChanging("ToLane"); _ToLane = StructuralObject.SetValidValue(value); ReportPropertyChanged("ToLane"); OnToLaneChanged(); } } private Nullable _ToLane; partial void OnToLaneChanging(Nullable value); partial void OnToLaneChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable ToLayer { get { return _ToLayer; } set { OnToLayerChanging(value); ReportPropertyChanging("ToLayer"); _ToLayer = StructuralObject.SetValidValue(value); ReportPropertyChanged("ToLayer"); OnToLayerChanged(); } } private Nullable _ToLayer; partial void OnToLayerChanging(Nullable value); partial void OnToLayerChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable ToCol { get { return _ToCol; } set { OnToColChanging(value); ReportPropertyChanging("ToCol"); _ToCol = StructuralObject.SetValidValue(value); ReportPropertyChanged("ToCol"); OnToColChanged(); } } private Nullable _ToCol; partial void OnToColChanging(Nullable value); partial void OnToColChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable ToRow { get { return _ToRow; } set { OnToRowChanging(value); ReportPropertyChanging("ToRow"); _ToRow = StructuralObject.SetValidValue(value); ReportPropertyChanged("ToRow"); OnToRowChanged(); } } private Nullable _ToRow; partial void OnToRowChanging(Nullable value); partial void OnToRowChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable FinishedTime { get { return _FinishedTime; } set { OnFinishedTimeChanging(value); ReportPropertyChanging("FinishedTime"); _FinishedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("FinishedTime"); OnFinishedTimeChanged(); } } private Nullable _FinishedTime; partial void OnFinishedTimeChanging(Nullable value); partial void OnFinishedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable ContainerType { get { return _ContainerType; } set { OnContainerTypeChanging(value); ReportPropertyChanging("ContainerType"); _ContainerType = StructuralObject.SetValidValue(value); ReportPropertyChanged("ContainerType"); OnContainerTypeChanged(); } } private Nullable _ContainerType; partial void OnContainerTypeChanging(Nullable value); partial void OnContainerTypeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedTime { get { return _CreatedTime; } set { OnCreatedTimeChanging(value); ReportPropertyChanging("CreatedTime"); _CreatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedTime"); OnCreatedTimeChanged(); } } private Nullable _CreatedTime; partial void OnCreatedTimeChanging(Nullable value); partial void OnCreatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedTime { get { return _UpdatedTime; } set { OnUpdatedTimeChanging(value); ReportPropertyChanging("UpdatedTime"); _UpdatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedTime"); OnUpdatedTimeChanged(); } } private Nullable _UpdatedTime; partial void OnUpdatedTimeChanging(Nullable value); partial void OnUpdatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedUserId { get { return _CreatedUserId; } set { OnCreatedUserIdChanging(value); ReportPropertyChanging("CreatedUserId"); _CreatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedUserId"); OnCreatedUserIdChanged(); } } private Nullable _CreatedUserId; partial void OnCreatedUserIdChanging(Nullable value); partial void OnCreatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String CreatedUserName { get { return _CreatedUserName; } set { OnCreatedUserNameChanging(value); ReportPropertyChanging("CreatedUserName"); _CreatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("CreatedUserName"); OnCreatedUserNameChanged(); } } private global::System.String _CreatedUserName; partial void OnCreatedUserNameChanging(global::System.String value); partial void OnCreatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedUserId { get { return _UpdatedUserId; } set { OnUpdatedUserIdChanging(value); ReportPropertyChanging("UpdatedUserId"); _UpdatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedUserId"); OnUpdatedUserIdChanged(); } } private Nullable _UpdatedUserId; partial void OnUpdatedUserIdChanging(Nullable value); partial void OnUpdatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String UpdatedUserName { get { return _UpdatedUserName; } set { OnUpdatedUserNameChanging(value); ReportPropertyChanging("UpdatedUserName"); _UpdatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("UpdatedUserName"); OnUpdatedUserNameChanged(); } } private global::System.String _UpdatedUserName; partial void OnUpdatedUserNameChanging(global::System.String value); partial void OnUpdatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Boolean IsDeleted { get { return _IsDeleted; } set { OnIsDeletedChanging(value); ReportPropertyChanging("IsDeleted"); _IsDeleted = StructuralObject.SetValidValue(value); ReportPropertyChanged("IsDeleted"); OnIsDeletedChanged(); } } private global::System.Boolean _IsDeleted; partial void OnIsDeletedChanging(global::System.Boolean value); partial void OnIsDeletedChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String SourcePlace { get { return _SourcePlace; } set { OnSourcePlaceChanging(value); ReportPropertyChanging("SourcePlace"); _SourcePlace = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("SourcePlace"); OnSourcePlaceChanged(); } } private global::System.String _SourcePlace; partial void OnSourcePlaceChanging(global::System.String value); partial void OnSourcePlaceChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String ToPlace { get { return _ToPlace; } set { OnToPlaceChanging(value); ReportPropertyChanging("ToPlace"); _ToPlace = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("ToPlace"); OnToPlaceChanged(); } } private global::System.String _ToPlace; partial void OnToPlaceChanging(global::System.String value); partial void OnToPlaceChanged(); #endregion } /// /// 没有元数据文档可用。 /// [EdmEntityTypeAttribute(NamespaceName="TEST", Name="wms_area")] [Serializable()] [DataContractAttribute(IsReference=true)] public partial class wms_area : EntityObject { #region 工厂方法 /// /// 创建新的 wms_area 对象。 /// /// Id 属性的初始值。 /// AreaName 属性的初始值。 /// AreaStatus 属性的初始值。 /// AreaType 属性的初始值。 /// IsDeleted 属性的初始值。 public static wms_area Createwms_area(global::System.Int64 id, global::System.String areaName, global::System.Int32 areaStatus, global::System.Int32 areaType, global::System.Boolean isDeleted) { wms_area wms_area = new wms_area(); wms_area.Id = id; wms_area.AreaName = areaName; wms_area.AreaStatus = areaStatus; wms_area.AreaType = areaType; wms_area.IsDeleted = isDeleted; return wms_area; } #endregion #region 基元属性 /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 Id { get { return _Id; } set { if (_Id != value) { OnIdChanging(value); ReportPropertyChanging("Id"); _Id = StructuralObject.SetValidValue(value); ReportPropertyChanged("Id"); OnIdChanged(); } } } private global::System.Int64 _Id; partial void OnIdChanging(global::System.Int64 value); partial void OnIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.String AreaName { get { return _AreaName; } set { OnAreaNameChanging(value); ReportPropertyChanging("AreaName"); _AreaName = StructuralObject.SetValidValue(value, false); ReportPropertyChanged("AreaName"); OnAreaNameChanged(); } } private global::System.String _AreaName; partial void OnAreaNameChanging(global::System.String value); partial void OnAreaNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String AreaDesc { get { return _AreaDesc; } set { OnAreaDescChanging(value); ReportPropertyChanging("AreaDesc"); _AreaDesc = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("AreaDesc"); OnAreaDescChanged(); } } private global::System.String _AreaDesc; partial void OnAreaDescChanging(global::System.String value); partial void OnAreaDescChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 AreaStatus { get { return _AreaStatus; } set { OnAreaStatusChanging(value); ReportPropertyChanging("AreaStatus"); _AreaStatus = StructuralObject.SetValidValue(value); ReportPropertyChanged("AreaStatus"); OnAreaStatusChanged(); } } private global::System.Int32 _AreaStatus; partial void OnAreaStatusChanging(global::System.Int32 value); partial void OnAreaStatusChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 AreaType { get { return _AreaType; } set { OnAreaTypeChanging(value); ReportPropertyChanging("AreaType"); _AreaType = StructuralObject.SetValidValue(value); ReportPropertyChanged("AreaType"); OnAreaTypeChanged(); } } private global::System.Int32 _AreaType; partial void OnAreaTypeChanging(global::System.Int32 value); partial void OnAreaTypeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedTime { get { return _CreatedTime; } set { OnCreatedTimeChanging(value); ReportPropertyChanging("CreatedTime"); _CreatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedTime"); OnCreatedTimeChanged(); } } private Nullable _CreatedTime; partial void OnCreatedTimeChanging(Nullable value); partial void OnCreatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedTime { get { return _UpdatedTime; } set { OnUpdatedTimeChanging(value); ReportPropertyChanging("UpdatedTime"); _UpdatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedTime"); OnUpdatedTimeChanged(); } } private Nullable _UpdatedTime; partial void OnUpdatedTimeChanging(Nullable value); partial void OnUpdatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedUserId { get { return _CreatedUserId; } set { OnCreatedUserIdChanging(value); ReportPropertyChanging("CreatedUserId"); _CreatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedUserId"); OnCreatedUserIdChanged(); } } private Nullable _CreatedUserId; partial void OnCreatedUserIdChanging(Nullable value); partial void OnCreatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String CreatedUserName { get { return _CreatedUserName; } set { OnCreatedUserNameChanging(value); ReportPropertyChanging("CreatedUserName"); _CreatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("CreatedUserName"); OnCreatedUserNameChanged(); } } private global::System.String _CreatedUserName; partial void OnCreatedUserNameChanging(global::System.String value); partial void OnCreatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedUserId { get { return _UpdatedUserId; } set { OnUpdatedUserIdChanging(value); ReportPropertyChanging("UpdatedUserId"); _UpdatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedUserId"); OnUpdatedUserIdChanged(); } } private Nullable _UpdatedUserId; partial void OnUpdatedUserIdChanging(Nullable value); partial void OnUpdatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String UpdatedUserName { get { return _UpdatedUserName; } set { OnUpdatedUserNameChanging(value); ReportPropertyChanging("UpdatedUserName"); _UpdatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("UpdatedUserName"); OnUpdatedUserNameChanged(); } } private global::System.String _UpdatedUserName; partial void OnUpdatedUserNameChanging(global::System.String value); partial void OnUpdatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Boolean IsDeleted { get { return _IsDeleted; } set { OnIsDeletedChanging(value); ReportPropertyChanging("IsDeleted"); _IsDeleted = StructuralObject.SetValidValue(value); ReportPropertyChanged("IsDeleted"); OnIsDeletedChanged(); } } private global::System.Boolean _IsDeleted; partial void OnIsDeletedChanging(global::System.Boolean value); partial void OnIsDeletedChanged(); #endregion #region 导航属性 /// /// 没有元数据文档可用。 /// [XmlIgnoreAttribute()] [SoapIgnoreAttribute()] [DataMemberAttribute()] [EdmRelationshipNavigationPropertyAttribute("TEST", "FK_wms_place_wms_area_AreaId", "wms_place")] public EntityCollection wms_place { get { return ((IEntityWithRelationships)this).RelationshipManager.GetRelatedCollection("TEST.FK_wms_place_wms_area_AreaId", "wms_place"); } set { if ((value != null)) { ((IEntityWithRelationships)this).RelationshipManager.InitializeRelatedCollection("TEST.FK_wms_place_wms_area_AreaId", "wms_place", value); } } } #endregion } /// /// 没有元数据文档可用。 /// [EdmEntityTypeAttribute(NamespaceName="TEST", Name="wms_container")] [Serializable()] [DataContractAttribute(IsReference=true)] public partial class wms_container : EntityObject { #region 工厂方法 /// /// 创建新的 wms_container 对象。 /// /// Id 属性的初始值。 /// IsDeleted 属性的初始值。 public static wms_container Createwms_container(global::System.Int64 id, global::System.Boolean isDeleted) { wms_container wms_container = new wms_container(); wms_container.Id = id; wms_container.IsDeleted = isDeleted; return wms_container; } #endregion #region 基元属性 /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 Id { get { return _Id; } set { if (_Id != value) { OnIdChanging(value); ReportPropertyChanging("Id"); _Id = StructuralObject.SetValidValue(value); ReportPropertyChanged("Id"); OnIdChanged(); } } } private global::System.Int64 _Id; partial void OnIdChanging(global::System.Int64 value); partial void OnIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String ContainerCode { get { return _ContainerCode; } set { OnContainerCodeChanging(value); ReportPropertyChanging("ContainerCode"); _ContainerCode = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("ContainerCode"); OnContainerCodeChanged(); } } private global::System.String _ContainerCode; partial void OnContainerCodeChanging(global::System.String value); partial void OnContainerCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable ContainerType { get { return _ContainerType; } set { OnContainerTypeChanging(value); ReportPropertyChanging("ContainerType"); _ContainerType = StructuralObject.SetValidValue(value); ReportPropertyChanged("ContainerType"); OnContainerTypeChanged(); } } private Nullable _ContainerType; partial void OnContainerTypeChanging(Nullable value); partial void OnContainerTypeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable ContainerStatus { get { return _ContainerStatus; } set { OnContainerStatusChanging(value); ReportPropertyChanging("ContainerStatus"); _ContainerStatus = StructuralObject.SetValidValue(value); ReportPropertyChanged("ContainerStatus"); OnContainerStatusChanged(); } } private Nullable _ContainerStatus; partial void OnContainerStatusChanging(Nullable value); partial void OnContainerStatusChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable SpecLength { get { return _SpecLength; } set { OnSpecLengthChanging(value); ReportPropertyChanging("SpecLength"); _SpecLength = StructuralObject.SetValidValue(value); ReportPropertyChanged("SpecLength"); OnSpecLengthChanged(); } } private Nullable _SpecLength; partial void OnSpecLengthChanging(Nullable value); partial void OnSpecLengthChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable SpecWidth { get { return _SpecWidth; } set { OnSpecWidthChanging(value); ReportPropertyChanging("SpecWidth"); _SpecWidth = StructuralObject.SetValidValue(value); ReportPropertyChanged("SpecWidth"); OnSpecWidthChanged(); } } private Nullable _SpecWidth; partial void OnSpecWidthChanging(Nullable value); partial void OnSpecWidthChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable SpecHeight { get { return _SpecHeight; } set { OnSpecHeightChanging(value); ReportPropertyChanging("SpecHeight"); _SpecHeight = StructuralObject.SetValidValue(value); ReportPropertyChanged("SpecHeight"); OnSpecHeightChanged(); } } private Nullable _SpecHeight; partial void OnSpecHeightChanging(Nullable value); partial void OnSpecHeightChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable LimitLength { get { return _LimitLength; } set { OnLimitLengthChanging(value); ReportPropertyChanging("LimitLength"); _LimitLength = StructuralObject.SetValidValue(value); ReportPropertyChanged("LimitLength"); OnLimitLengthChanged(); } } private Nullable _LimitLength; partial void OnLimitLengthChanging(Nullable value); partial void OnLimitLengthChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable LimitWidth { get { return _LimitWidth; } set { OnLimitWidthChanging(value); ReportPropertyChanging("LimitWidth"); _LimitWidth = StructuralObject.SetValidValue(value); ReportPropertyChanged("LimitWidth"); OnLimitWidthChanged(); } } private Nullable _LimitWidth; partial void OnLimitWidthChanging(Nullable value); partial void OnLimitWidthChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable LimitHeight { get { return _LimitHeight; } set { OnLimitHeightChanging(value); ReportPropertyChanging("LimitHeight"); _LimitHeight = StructuralObject.SetValidValue(value); ReportPropertyChanged("LimitHeight"); OnLimitHeightChanged(); } } private Nullable _LimitHeight; partial void OnLimitHeightChanging(Nullable value); partial void OnLimitHeightChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable MaxWeight { get { return _MaxWeight; } set { OnMaxWeightChanging(value); ReportPropertyChanging("MaxWeight"); _MaxWeight = StructuralObject.SetValidValue(value); ReportPropertyChanged("MaxWeight"); OnMaxWeightChanged(); } } private Nullable _MaxWeight; partial void OnMaxWeightChanging(Nullable value); partial void OnMaxWeightChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable ParentContainerId { get { return _ParentContainerId; } set { OnParentContainerIdChanging(value); ReportPropertyChanging("ParentContainerId"); _ParentContainerId = StructuralObject.SetValidValue(value); ReportPropertyChanged("ParentContainerId"); OnParentContainerIdChanged(); } } private Nullable _ParentContainerId; partial void OnParentContainerIdChanging(Nullable value); partial void OnParentContainerIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedTime { get { return _CreatedTime; } set { OnCreatedTimeChanging(value); ReportPropertyChanging("CreatedTime"); _CreatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedTime"); OnCreatedTimeChanged(); } } private Nullable _CreatedTime; partial void OnCreatedTimeChanging(Nullable value); partial void OnCreatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedTime { get { return _UpdatedTime; } set { OnUpdatedTimeChanging(value); ReportPropertyChanging("UpdatedTime"); _UpdatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedTime"); OnUpdatedTimeChanged(); } } private Nullable _UpdatedTime; partial void OnUpdatedTimeChanging(Nullable value); partial void OnUpdatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedUserId { get { return _CreatedUserId; } set { OnCreatedUserIdChanging(value); ReportPropertyChanging("CreatedUserId"); _CreatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedUserId"); OnCreatedUserIdChanged(); } } private Nullable _CreatedUserId; partial void OnCreatedUserIdChanging(Nullable value); partial void OnCreatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String CreatedUserName { get { return _CreatedUserName; } set { OnCreatedUserNameChanging(value); ReportPropertyChanging("CreatedUserName"); _CreatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("CreatedUserName"); OnCreatedUserNameChanged(); } } private global::System.String _CreatedUserName; partial void OnCreatedUserNameChanging(global::System.String value); partial void OnCreatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedUserId { get { return _UpdatedUserId; } set { OnUpdatedUserIdChanging(value); ReportPropertyChanging("UpdatedUserId"); _UpdatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedUserId"); OnUpdatedUserIdChanged(); } } private Nullable _UpdatedUserId; partial void OnUpdatedUserIdChanging(Nullable value); partial void OnUpdatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String UpdatedUserName { get { return _UpdatedUserName; } set { OnUpdatedUserNameChanging(value); ReportPropertyChanging("UpdatedUserName"); _UpdatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("UpdatedUserName"); OnUpdatedUserNameChanged(); } } private global::System.String _UpdatedUserName; partial void OnUpdatedUserNameChanging(global::System.String value); partial void OnUpdatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Boolean IsDeleted { get { return _IsDeleted; } set { OnIsDeletedChanging(value); ReportPropertyChanging("IsDeleted"); _IsDeleted = StructuralObject.SetValidValue(value); ReportPropertyChanged("IsDeleted"); OnIsDeletedChanged(); } } private global::System.Boolean _IsDeleted; partial void OnIsDeletedChanging(global::System.Boolean value); partial void OnIsDeletedChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String ContainerTypeCode { get { return _ContainerTypeCode; } set { OnContainerTypeCodeChanging(value); ReportPropertyChanging("ContainerTypeCode"); _ContainerTypeCode = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("ContainerTypeCode"); OnContainerTypeCodeChanged(); } } private global::System.String _ContainerTypeCode; partial void OnContainerTypeCodeChanging(global::System.String value); partial void OnContainerTypeCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String RealLocationCode { get { return _RealLocationCode; } set { OnRealLocationCodeChanging(value); ReportPropertyChanging("RealLocationCode"); _RealLocationCode = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("RealLocationCode"); OnRealLocationCodeChanged(); } } private global::System.String _RealLocationCode; partial void OnRealLocationCodeChanging(global::System.String value); partial void OnRealLocationCodeChanged(); #endregion #region 导航属性 /// /// 没有元数据文档可用。 /// [XmlIgnoreAttribute()] [SoapIgnoreAttribute()] [DataMemberAttribute()] [EdmRelationshipNavigationPropertyAttribute("TEST", "FK_wms_materialcontainer_wms_container_ContainerId", "wms_materialcontainer")] public EntityCollection wms_materialcontainer { get { return ((IEntityWithRelationships)this).RelationshipManager.GetRelatedCollection("TEST.FK_wms_materialcontainer_wms_container_ContainerId", "wms_materialcontainer"); } set { if ((value != null)) { ((IEntityWithRelationships)this).RelationshipManager.InitializeRelatedCollection("TEST.FK_wms_materialcontainer_wms_container_ContainerId", "wms_materialcontainer", value); } } } #endregion } /// /// 没有元数据文档可用。 /// [EdmEntityTypeAttribute(NamespaceName="TEST", Name="wms_container_type")] [Serializable()] [DataContractAttribute(IsReference=true)] public partial class wms_container_type : EntityObject { #region 工厂方法 /// /// 创建新的 wms_container_type 对象。 /// /// Id 属性的初始值。 /// IsDeleted 属性的初始值。 public static wms_container_type Createwms_container_type(global::System.Int64 id, global::System.Boolean isDeleted) { wms_container_type wms_container_type = new wms_container_type(); wms_container_type.Id = id; wms_container_type.IsDeleted = isDeleted; return wms_container_type; } #endregion #region 基元属性 /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 Id { get { return _Id; } set { if (_Id != value) { OnIdChanging(value); ReportPropertyChanging("Id"); _Id = StructuralObject.SetValidValue(value); ReportPropertyChanged("Id"); OnIdChanged(); } } } private global::System.Int64 _Id; partial void OnIdChanging(global::System.Int64 value); partial void OnIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String WareContainerTypeCode { get { return _WareContainerTypeCode; } set { OnWareContainerTypeCodeChanging(value); ReportPropertyChanging("WareContainerTypeCode"); _WareContainerTypeCode = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("WareContainerTypeCode"); OnWareContainerTypeCodeChanged(); } } private global::System.String _WareContainerTypeCode; partial void OnWareContainerTypeCodeChanging(global::System.String value); partial void OnWareContainerTypeCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String WareContainerTypeName { get { return _WareContainerTypeName; } set { OnWareContainerTypeNameChanging(value); ReportPropertyChanging("WareContainerTypeName"); _WareContainerTypeName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("WareContainerTypeName"); OnWareContainerTypeNameChanged(); } } private global::System.String _WareContainerTypeName; partial void OnWareContainerTypeNameChanging(global::System.String value); partial void OnWareContainerTypeNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable Length { get { return _Length; } set { OnLengthChanging(value); ReportPropertyChanging("Length"); _Length = StructuralObject.SetValidValue(value); ReportPropertyChanged("Length"); OnLengthChanged(); } } private Nullable _Length; partial void OnLengthChanging(Nullable value); partial void OnLengthChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable Height { get { return _Height; } set { OnHeightChanging(value); ReportPropertyChanging("Height"); _Height = StructuralObject.SetValidValue(value); ReportPropertyChanged("Height"); OnHeightChanged(); } } private Nullable _Height; partial void OnHeightChanging(Nullable value); partial void OnHeightChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable Width { get { return _Width; } set { OnWidthChanging(value); ReportPropertyChanging("Width"); _Width = StructuralObject.SetValidValue(value); ReportPropertyChanged("Width"); OnWidthChanged(); } } private Nullable _Width; partial void OnWidthChanging(Nullable value); partial void OnWidthChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String LocationType { get { return _LocationType; } set { OnLocationTypeChanging(value); ReportPropertyChanging("LocationType"); _LocationType = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("LocationType"); OnLocationTypeChanged(); } } private global::System.String _LocationType; partial void OnLocationTypeChanging(global::System.String value); partial void OnLocationTypeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Remarks { get { return _Remarks; } set { OnRemarksChanging(value); ReportPropertyChanging("Remarks"); _Remarks = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Remarks"); OnRemarksChanged(); } } private global::System.String _Remarks; partial void OnRemarksChanging(global::System.String value); partial void OnRemarksChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable Status { get { return _Status; } set { OnStatusChanging(value); ReportPropertyChanging("Status"); _Status = StructuralObject.SetValidValue(value); ReportPropertyChanged("Status"); OnStatusChanged(); } } private Nullable _Status; partial void OnStatusChanging(Nullable value); partial void OnStatusChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedTime { get { return _CreatedTime; } set { OnCreatedTimeChanging(value); ReportPropertyChanging("CreatedTime"); _CreatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedTime"); OnCreatedTimeChanged(); } } private Nullable _CreatedTime; partial void OnCreatedTimeChanging(Nullable value); partial void OnCreatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedTime { get { return _UpdatedTime; } set { OnUpdatedTimeChanging(value); ReportPropertyChanging("UpdatedTime"); _UpdatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedTime"); OnUpdatedTimeChanged(); } } private Nullable _UpdatedTime; partial void OnUpdatedTimeChanging(Nullable value); partial void OnUpdatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedUserId { get { return _CreatedUserId; } set { OnCreatedUserIdChanging(value); ReportPropertyChanging("CreatedUserId"); _CreatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedUserId"); OnCreatedUserIdChanged(); } } private Nullable _CreatedUserId; partial void OnCreatedUserIdChanging(Nullable value); partial void OnCreatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String CreatedUserName { get { return _CreatedUserName; } set { OnCreatedUserNameChanging(value); ReportPropertyChanging("CreatedUserName"); _CreatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("CreatedUserName"); OnCreatedUserNameChanged(); } } private global::System.String _CreatedUserName; partial void OnCreatedUserNameChanging(global::System.String value); partial void OnCreatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedUserId { get { return _UpdatedUserId; } set { OnUpdatedUserIdChanging(value); ReportPropertyChanging("UpdatedUserId"); _UpdatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedUserId"); OnUpdatedUserIdChanged(); } } private Nullable _UpdatedUserId; partial void OnUpdatedUserIdChanging(Nullable value); partial void OnUpdatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String UpdatedUserName { get { return _UpdatedUserName; } set { OnUpdatedUserNameChanging(value); ReportPropertyChanging("UpdatedUserName"); _UpdatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("UpdatedUserName"); OnUpdatedUserNameChanged(); } } private global::System.String _UpdatedUserName; partial void OnUpdatedUserNameChanging(global::System.String value); partial void OnUpdatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Boolean IsDeleted { get { return _IsDeleted; } set { OnIsDeletedChanging(value); ReportPropertyChanging("IsDeleted"); _IsDeleted = StructuralObject.SetValidValue(value); ReportPropertyChanged("IsDeleted"); OnIsDeletedChanged(); } } private global::System.Boolean _IsDeleted; partial void OnIsDeletedChanging(global::System.Boolean value); partial void OnIsDeletedChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable PLCTypeId { get { return _PLCTypeId; } set { OnPLCTypeIdChanging(value); ReportPropertyChanging("PLCTypeId"); _PLCTypeId = StructuralObject.SetValidValue(value); ReportPropertyChanged("PLCTypeId"); OnPLCTypeIdChanged(); } } private Nullable _PLCTypeId; partial void OnPLCTypeIdChanging(Nullable value); partial void OnPLCTypeIdChanged(); #endregion } /// /// 没有元数据文档可用。 /// [EdmEntityTypeAttribute(NamespaceName="TEST", Name="wms_location_type")] [Serializable()] [DataContractAttribute(IsReference=true)] public partial class wms_location_type : EntityObject { #region 工厂方法 /// /// 创建新的 wms_location_type 对象。 /// /// Id 属性的初始值。 /// Status 属性的初始值。 /// Length 属性的初始值。 /// Width 属性的初始值。 /// Height 属性的初始值。 /// MaxWeight 属性的初始值。 /// IsDeleted 属性的初始值。 public static wms_location_type Createwms_location_type(global::System.Int64 id, global::System.Int32 status, global::System.Decimal length, global::System.Decimal width, global::System.Decimal height, global::System.Decimal maxWeight, global::System.Boolean isDeleted) { wms_location_type wms_location_type = new wms_location_type(); wms_location_type.Id = id; wms_location_type.Status = status; wms_location_type.Length = length; wms_location_type.Width = width; wms_location_type.Height = height; wms_location_type.MaxWeight = maxWeight; wms_location_type.IsDeleted = isDeleted; return wms_location_type; } #endregion #region 基元属性 /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 Id { get { return _Id; } set { if (_Id != value) { OnIdChanging(value); ReportPropertyChanging("Id"); _Id = StructuralObject.SetValidValue(value); ReportPropertyChanged("Id"); OnIdChanged(); } } } private global::System.Int64 _Id; partial void OnIdChanging(global::System.Int64 value); partial void OnIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String WareLocationTypeCode { get { return _WareLocationTypeCode; } set { OnWareLocationTypeCodeChanging(value); ReportPropertyChanging("WareLocationTypeCode"); _WareLocationTypeCode = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("WareLocationTypeCode"); OnWareLocationTypeCodeChanged(); } } private global::System.String _WareLocationTypeCode; partial void OnWareLocationTypeCodeChanging(global::System.String value); partial void OnWareLocationTypeCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String WareLocationTypeName { get { return _WareLocationTypeName; } set { OnWareLocationTypeNameChanging(value); ReportPropertyChanging("WareLocationTypeName"); _WareLocationTypeName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("WareLocationTypeName"); OnWareLocationTypeNameChanged(); } } private global::System.String _WareLocationTypeName; partial void OnWareLocationTypeNameChanging(global::System.String value); partial void OnWareLocationTypeNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 Status { get { return _Status; } set { OnStatusChanging(value); ReportPropertyChanging("Status"); _Status = StructuralObject.SetValidValue(value); ReportPropertyChanged("Status"); OnStatusChanged(); } } private global::System.Int32 _Status; partial void OnStatusChanging(global::System.Int32 value); partial void OnStatusChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Remark { get { return _Remark; } set { OnRemarkChanging(value); ReportPropertyChanging("Remark"); _Remark = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Remark"); OnRemarkChanged(); } } private global::System.String _Remark; partial void OnRemarkChanging(global::System.String value); partial void OnRemarkChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Decimal Length { get { return _Length; } set { OnLengthChanging(value); ReportPropertyChanging("Length"); _Length = StructuralObject.SetValidValue(value); ReportPropertyChanged("Length"); OnLengthChanged(); } } private global::System.Decimal _Length; partial void OnLengthChanging(global::System.Decimal value); partial void OnLengthChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Decimal Width { get { return _Width; } set { OnWidthChanging(value); ReportPropertyChanging("Width"); _Width = StructuralObject.SetValidValue(value); ReportPropertyChanged("Width"); OnWidthChanged(); } } private global::System.Decimal _Width; partial void OnWidthChanging(global::System.Decimal value); partial void OnWidthChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Decimal Height { get { return _Height; } set { OnHeightChanging(value); ReportPropertyChanging("Height"); _Height = StructuralObject.SetValidValue(value); ReportPropertyChanged("Height"); OnHeightChanged(); } } private global::System.Decimal _Height; partial void OnHeightChanging(global::System.Decimal value); partial void OnHeightChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Decimal MaxWeight { get { return _MaxWeight; } set { OnMaxWeightChanging(value); ReportPropertyChanging("MaxWeight"); _MaxWeight = StructuralObject.SetValidValue(value); ReportPropertyChanged("MaxWeight"); OnMaxWeightChanged(); } } private global::System.Decimal _MaxWeight; partial void OnMaxWeightChanging(global::System.Decimal value); partial void OnMaxWeightChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedTime { get { return _CreatedTime; } set { OnCreatedTimeChanging(value); ReportPropertyChanging("CreatedTime"); _CreatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedTime"); OnCreatedTimeChanged(); } } private Nullable _CreatedTime; partial void OnCreatedTimeChanging(Nullable value); partial void OnCreatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedTime { get { return _UpdatedTime; } set { OnUpdatedTimeChanging(value); ReportPropertyChanging("UpdatedTime"); _UpdatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedTime"); OnUpdatedTimeChanged(); } } private Nullable _UpdatedTime; partial void OnUpdatedTimeChanging(Nullable value); partial void OnUpdatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedUserId { get { return _CreatedUserId; } set { OnCreatedUserIdChanging(value); ReportPropertyChanging("CreatedUserId"); _CreatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedUserId"); OnCreatedUserIdChanged(); } } private Nullable _CreatedUserId; partial void OnCreatedUserIdChanging(Nullable value); partial void OnCreatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String CreatedUserName { get { return _CreatedUserName; } set { OnCreatedUserNameChanging(value); ReportPropertyChanging("CreatedUserName"); _CreatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("CreatedUserName"); OnCreatedUserNameChanged(); } } private global::System.String _CreatedUserName; partial void OnCreatedUserNameChanging(global::System.String value); partial void OnCreatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedUserId { get { return _UpdatedUserId; } set { OnUpdatedUserIdChanging(value); ReportPropertyChanging("UpdatedUserId"); _UpdatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedUserId"); OnUpdatedUserIdChanged(); } } private Nullable _UpdatedUserId; partial void OnUpdatedUserIdChanging(Nullable value); partial void OnUpdatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String UpdatedUserName { get { return _UpdatedUserName; } set { OnUpdatedUserNameChanging(value); ReportPropertyChanging("UpdatedUserName"); _UpdatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("UpdatedUserName"); OnUpdatedUserNameChanged(); } } private global::System.String _UpdatedUserName; partial void OnUpdatedUserNameChanging(global::System.String value); partial void OnUpdatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Boolean IsDeleted { get { return _IsDeleted; } set { OnIsDeletedChanging(value); ReportPropertyChanging("IsDeleted"); _IsDeleted = StructuralObject.SetValidValue(value); ReportPropertyChanged("IsDeleted"); OnIsDeletedChanged(); } } private global::System.Boolean _IsDeleted; partial void OnIsDeletedChanging(global::System.Boolean value); partial void OnIsDeletedChanged(); #endregion } /// /// 没有元数据文档可用。 /// [EdmEntityTypeAttribute(NamespaceName="TEST", Name="wms_material")] [Serializable()] [DataContractAttribute(IsReference=true)] public partial class wms_material : EntityObject { #region 工厂方法 /// /// 创建新的 wms_material 对象。 /// /// Id 属性的初始值。 /// IsDeleted 属性的初始值。 public static wms_material Createwms_material(global::System.Int64 id, global::System.Boolean isDeleted) { wms_material wms_material = new wms_material(); wms_material.Id = id; wms_material.IsDeleted = isDeleted; return wms_material; } #endregion #region 基元属性 /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 Id { get { return _Id; } set { if (_Id != value) { OnIdChanging(value); ReportPropertyChanging("Id"); _Id = StructuralObject.SetValidValue(value); ReportPropertyChanged("Id"); OnIdChanged(); } } } private global::System.Int64 _Id; partial void OnIdChanging(global::System.Int64 value); partial void OnIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String MaterialName { get { return _MaterialName; } set { OnMaterialNameChanging(value); ReportPropertyChanging("MaterialName"); _MaterialName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("MaterialName"); OnMaterialNameChanged(); } } private global::System.String _MaterialName; partial void OnMaterialNameChanging(global::System.String value); partial void OnMaterialNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String MaterialNo { get { return _MaterialNo; } set { OnMaterialNoChanging(value); ReportPropertyChanging("MaterialNo"); _MaterialNo = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("MaterialNo"); OnMaterialNoChanged(); } } private global::System.String _MaterialNo; partial void OnMaterialNoChanging(global::System.String value); partial void OnMaterialNoChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String MaterialBatch { get { return _MaterialBatch; } set { OnMaterialBatchChanging(value); ReportPropertyChanging("MaterialBatch"); _MaterialBatch = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("MaterialBatch"); OnMaterialBatchChanged(); } } private global::System.String _MaterialBatch; partial void OnMaterialBatchChanging(global::System.String value); partial void OnMaterialBatchChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Description { get { return _Description; } set { OnDescriptionChanging(value); ReportPropertyChanging("Description"); _Description = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Description"); OnDescriptionChanged(); } } private global::System.String _Description; partial void OnDescriptionChanging(global::System.String value); partial void OnDescriptionChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable InspectionMethod { get { return _InspectionMethod; } set { OnInspectionMethodChanging(value); ReportPropertyChanging("InspectionMethod"); _InspectionMethod = StructuralObject.SetValidValue(value); ReportPropertyChanged("InspectionMethod"); OnInspectionMethodChanged(); } } private Nullable _InspectionMethod; partial void OnInspectionMethodChanging(Nullable value); partial void OnInspectionMethodChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable MaterialType { get { return _MaterialType; } set { OnMaterialTypeChanging(value); ReportPropertyChanging("MaterialType"); _MaterialType = StructuralObject.SetValidValue(value); ReportPropertyChanged("MaterialType"); OnMaterialTypeChanged(); } } private Nullable _MaterialType; partial void OnMaterialTypeChanging(Nullable value); partial void OnMaterialTypeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String MaterialSpec { get { return _MaterialSpec; } set { OnMaterialSpecChanging(value); ReportPropertyChanging("MaterialSpec"); _MaterialSpec = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("MaterialSpec"); OnMaterialSpecChanged(); } } private global::System.String _MaterialSpec; partial void OnMaterialSpecChanging(global::System.String value); partial void OnMaterialSpecChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UnitType { get { return _UnitType; } set { OnUnitTypeChanging(value); ReportPropertyChanging("UnitType"); _UnitType = StructuralObject.SetValidValue(value); ReportPropertyChanged("UnitType"); OnUnitTypeChanged(); } } private Nullable _UnitType; partial void OnUnitTypeChanging(Nullable value); partial void OnUnitTypeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UnitNo { get { return _UnitNo; } set { OnUnitNoChanging(value); ReportPropertyChanging("UnitNo"); _UnitNo = StructuralObject.SetValidValue(value); ReportPropertyChanged("UnitNo"); OnUnitNoChanged(); } } private Nullable _UnitNo; partial void OnUnitNoChanging(Nullable value); partial void OnUnitNoChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable Safeqty { get { return _Safeqty; } set { OnSafeqtyChanging(value); ReportPropertyChanging("Safeqty"); _Safeqty = StructuralObject.SetValidValue(value); ReportPropertyChanged("Safeqty"); OnSafeqtyChanged(); } } private Nullable _Safeqty; partial void OnSafeqtyChanging(Nullable value); partial void OnSafeqtyChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable Keymaterials { get { return _Keymaterials; } set { OnKeymaterialsChanging(value); ReportPropertyChanging("Keymaterials"); _Keymaterials = StructuralObject.SetValidValue(value); ReportPropertyChanged("Keymaterials"); OnKeymaterialsChanged(); } } private Nullable _Keymaterials; partial void OnKeymaterialsChanging(Nullable value); partial void OnKeymaterialsChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String ErpNo { get { return _ErpNo; } set { OnErpNoChanging(value); ReportPropertyChanging("ErpNo"); _ErpNo = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("ErpNo"); OnErpNoChanged(); } } private global::System.String _ErpNo; partial void OnErpNoChanging(global::System.String value); partial void OnErpNoChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String GraphNo { get { return _GraphNo; } set { OnGraphNoChanging(value); ReportPropertyChanging("GraphNo"); _GraphNo = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("GraphNo"); OnGraphNoChanged(); } } private global::System.String _GraphNo; partial void OnGraphNoChanging(global::System.String value); partial void OnGraphNoChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Qccategory { get { return _Qccategory; } set { OnQccategoryChanging(value); ReportPropertyChanging("Qccategory"); _Qccategory = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Qccategory"); OnQccategoryChanged(); } } private global::System.String _Qccategory; partial void OnQccategoryChanging(global::System.String value); partial void OnQccategoryChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable Warranty { get { return _Warranty; } set { OnWarrantyChanging(value); ReportPropertyChanging("Warranty"); _Warranty = StructuralObject.SetValidValue(value); ReportPropertyChanged("Warranty"); OnWarrantyChanged(); } } private Nullable _Warranty; partial void OnWarrantyChanging(Nullable value); partial void OnWarrantyChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable MaxImumqty { get { return _MaxImumqty; } set { OnMaxImumqtyChanging(value); ReportPropertyChanging("MaxImumqty"); _MaxImumqty = StructuralObject.SetValidValue(value); ReportPropertyChanged("MaxImumqty"); OnMaxImumqtyChanged(); } } private Nullable _MaxImumqty; partial void OnMaxImumqtyChanging(Nullable value); partial void OnMaxImumqtyChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable MinstorageAge { get { return _MinstorageAge; } set { OnMinstorageAgeChanging(value); ReportPropertyChanging("MinstorageAge"); _MinstorageAge = StructuralObject.SetValidValue(value); ReportPropertyChanged("MinstorageAge"); OnMinstorageAgeChanged(); } } private Nullable _MinstorageAge; partial void OnMinstorageAgeChanging(Nullable value); partial void OnMinstorageAgeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable MaxstorageAge { get { return _MaxstorageAge; } set { OnMaxstorageAgeChanging(value); ReportPropertyChanging("MaxstorageAge"); _MaxstorageAge = StructuralObject.SetValidValue(value); ReportPropertyChanged("MaxstorageAge"); OnMaxstorageAgeChanged(); } } private Nullable _MaxstorageAge; partial void OnMaxstorageAgeChanging(Nullable value); partial void OnMaxstorageAgeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedTime { get { return _CreatedTime; } set { OnCreatedTimeChanging(value); ReportPropertyChanging("CreatedTime"); _CreatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedTime"); OnCreatedTimeChanged(); } } private Nullable _CreatedTime; partial void OnCreatedTimeChanging(Nullable value); partial void OnCreatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedTime { get { return _UpdatedTime; } set { OnUpdatedTimeChanging(value); ReportPropertyChanging("UpdatedTime"); _UpdatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedTime"); OnUpdatedTimeChanged(); } } private Nullable _UpdatedTime; partial void OnUpdatedTimeChanging(Nullable value); partial void OnUpdatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedUserId { get { return _CreatedUserId; } set { OnCreatedUserIdChanging(value); ReportPropertyChanging("CreatedUserId"); _CreatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedUserId"); OnCreatedUserIdChanged(); } } private Nullable _CreatedUserId; partial void OnCreatedUserIdChanging(Nullable value); partial void OnCreatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String CreatedUserName { get { return _CreatedUserName; } set { OnCreatedUserNameChanging(value); ReportPropertyChanging("CreatedUserName"); _CreatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("CreatedUserName"); OnCreatedUserNameChanged(); } } private global::System.String _CreatedUserName; partial void OnCreatedUserNameChanging(global::System.String value); partial void OnCreatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedUserId { get { return _UpdatedUserId; } set { OnUpdatedUserIdChanging(value); ReportPropertyChanging("UpdatedUserId"); _UpdatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedUserId"); OnUpdatedUserIdChanged(); } } private Nullable _UpdatedUserId; partial void OnUpdatedUserIdChanging(Nullable value); partial void OnUpdatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String UpdatedUserName { get { return _UpdatedUserName; } set { OnUpdatedUserNameChanging(value); ReportPropertyChanging("UpdatedUserName"); _UpdatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("UpdatedUserName"); OnUpdatedUserNameChanged(); } } private global::System.String _UpdatedUserName; partial void OnUpdatedUserNameChanging(global::System.String value); partial void OnUpdatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Boolean IsDeleted { get { return _IsDeleted; } set { OnIsDeletedChanging(value); ReportPropertyChanging("IsDeleted"); _IsDeleted = StructuralObject.SetValidValue(value); ReportPropertyChanged("IsDeleted"); OnIsDeletedChanged(); } } private global::System.Boolean _IsDeleted; partial void OnIsDeletedChanging(global::System.Boolean value); partial void OnIsDeletedChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable Height { get { return _Height; } set { OnHeightChanging(value); ReportPropertyChanging("Height"); _Height = StructuralObject.SetValidValue(value); ReportPropertyChanged("Height"); OnHeightChanged(); } } private Nullable _Height; partial void OnHeightChanging(Nullable value); partial void OnHeightChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable Length { get { return _Length; } set { OnLengthChanging(value); ReportPropertyChanging("Length"); _Length = StructuralObject.SetValidValue(value); ReportPropertyChanged("Length"); OnLengthChanged(); } } private Nullable _Length; partial void OnLengthChanging(Nullable value); partial void OnLengthChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Remark { get { return _Remark; } set { OnRemarkChanging(value); ReportPropertyChanging("Remark"); _Remark = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Remark"); OnRemarkChanged(); } } private global::System.String _Remark; partial void OnRemarkChanging(global::System.String value); partial void OnRemarkChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable Width { get { return _Width; } set { OnWidthChanging(value); ReportPropertyChanging("Width"); _Width = StructuralObject.SetValidValue(value); ReportPropertyChanged("Width"); OnWidthChanged(); } } private Nullable _Width; partial void OnWidthChanging(Nullable value); partial void OnWidthChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String WareContainerTypeCode { get { return _WareContainerTypeCode; } set { OnWareContainerTypeCodeChanging(value); ReportPropertyChanging("WareContainerTypeCode"); _WareContainerTypeCode = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("WareContainerTypeCode"); OnWareContainerTypeCodeChanged(); } } private global::System.String _WareContainerTypeCode; partial void OnWareContainerTypeCodeChanging(global::System.String value); partial void OnWareContainerTypeCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String CarType { get { return _CarType; } set { OnCarTypeChanging(value); ReportPropertyChanging("CarType"); _CarType = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("CarType"); OnCarTypeChanged(); } } private global::System.String _CarType; partial void OnCarTypeChanging(global::System.String value); partial void OnCarTypeChanged(); #endregion #region 导航属性 /// /// 没有元数据文档可用。 /// [XmlIgnoreAttribute()] [SoapIgnoreAttribute()] [DataMemberAttribute()] [EdmRelationshipNavigationPropertyAttribute("TEST", "FK_wms_materialcontainer_wms_material_MaterialId", "wms_materialcontainer")] public EntityCollection wms_materialcontainer { get { return ((IEntityWithRelationships)this).RelationshipManager.GetRelatedCollection("TEST.FK_wms_materialcontainer_wms_material_MaterialId", "wms_materialcontainer"); } set { if ((value != null)) { ((IEntityWithRelationships)this).RelationshipManager.InitializeRelatedCollection("TEST.FK_wms_materialcontainer_wms_material_MaterialId", "wms_materialcontainer", value); } } } #endregion } /// /// 没有元数据文档可用。 /// [EdmEntityTypeAttribute(NamespaceName="TEST", Name="wms_materialcontainer")] [Serializable()] [DataContractAttribute(IsReference=true)] public partial class wms_materialcontainer : EntityObject { #region 工厂方法 /// /// 创建新的 wms_materialcontainer 对象。 /// /// Id 属性的初始值。 /// ContainerId 属性的初始值。 /// ContainerCode 属性的初始值。 /// MaterialName 属性的初始值。 /// MaterialNo 属性的初始值。 /// MaterialBatch 属性的初始值。 /// MaterialId 属性的初始值。 /// BindQuantity 属性的初始值。 /// BindStatus 属性的初始值。 /// SampleQty 属性的初始值。 /// OrderNo 属性的初始值。 /// IsDeleted 属性的初始值。 public static wms_materialcontainer Createwms_materialcontainer(global::System.Int64 id, global::System.Int64 containerId, global::System.String containerCode, global::System.String materialName, global::System.String materialNo, global::System.String materialBatch, global::System.Int64 materialId, global::System.Decimal bindQuantity, global::System.Int32 bindStatus, global::System.Decimal sampleQty, global::System.String orderNo, global::System.Boolean isDeleted) { wms_materialcontainer wms_materialcontainer = new wms_materialcontainer(); wms_materialcontainer.Id = id; wms_materialcontainer.ContainerId = containerId; wms_materialcontainer.ContainerCode = containerCode; wms_materialcontainer.MaterialName = materialName; wms_materialcontainer.MaterialNo = materialNo; wms_materialcontainer.MaterialBatch = materialBatch; wms_materialcontainer.MaterialId = materialId; wms_materialcontainer.BindQuantity = bindQuantity; wms_materialcontainer.BindStatus = bindStatus; wms_materialcontainer.SampleQty = sampleQty; wms_materialcontainer.OrderNo = orderNo; wms_materialcontainer.IsDeleted = isDeleted; return wms_materialcontainer; } #endregion #region 基元属性 /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 Id { get { return _Id; } set { if (_Id != value) { OnIdChanging(value); ReportPropertyChanging("Id"); _Id = StructuralObject.SetValidValue(value); ReportPropertyChanged("Id"); OnIdChanged(); } } } private global::System.Int64 _Id; partial void OnIdChanging(global::System.Int64 value); partial void OnIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 ContainerId { get { return _ContainerId; } set { OnContainerIdChanging(value); ReportPropertyChanging("ContainerId"); _ContainerId = StructuralObject.SetValidValue(value); ReportPropertyChanged("ContainerId"); OnContainerIdChanged(); } } private global::System.Int64 _ContainerId; partial void OnContainerIdChanging(global::System.Int64 value); partial void OnContainerIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.String ContainerCode { get { return _ContainerCode; } set { OnContainerCodeChanging(value); ReportPropertyChanging("ContainerCode"); _ContainerCode = StructuralObject.SetValidValue(value, false); ReportPropertyChanged("ContainerCode"); OnContainerCodeChanged(); } } private global::System.String _ContainerCode; partial void OnContainerCodeChanging(global::System.String value); partial void OnContainerCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.String MaterialName { get { return _MaterialName; } set { OnMaterialNameChanging(value); ReportPropertyChanging("MaterialName"); _MaterialName = StructuralObject.SetValidValue(value, false); ReportPropertyChanged("MaterialName"); OnMaterialNameChanged(); } } private global::System.String _MaterialName; partial void OnMaterialNameChanging(global::System.String value); partial void OnMaterialNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.String MaterialNo { get { return _MaterialNo; } set { OnMaterialNoChanging(value); ReportPropertyChanging("MaterialNo"); _MaterialNo = StructuralObject.SetValidValue(value, false); ReportPropertyChanged("MaterialNo"); OnMaterialNoChanged(); } } private global::System.String _MaterialNo; partial void OnMaterialNoChanging(global::System.String value); partial void OnMaterialNoChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.String MaterialBatch { get { return _MaterialBatch; } set { OnMaterialBatchChanging(value); ReportPropertyChanging("MaterialBatch"); _MaterialBatch = StructuralObject.SetValidValue(value, false); ReportPropertyChanged("MaterialBatch"); OnMaterialBatchChanged(); } } private global::System.String _MaterialBatch; partial void OnMaterialBatchChanging(global::System.String value); partial void OnMaterialBatchChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String MaterialSpec { get { return _MaterialSpec; } set { OnMaterialSpecChanging(value); ReportPropertyChanging("MaterialSpec"); _MaterialSpec = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("MaterialSpec"); OnMaterialSpecChanged(); } } private global::System.String _MaterialSpec; partial void OnMaterialSpecChanging(global::System.String value); partial void OnMaterialSpecChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 MaterialId { get { return _MaterialId; } set { OnMaterialIdChanging(value); ReportPropertyChanging("MaterialId"); _MaterialId = StructuralObject.SetValidValue(value); ReportPropertyChanged("MaterialId"); OnMaterialIdChanged(); } } private global::System.Int64 _MaterialId; partial void OnMaterialIdChanging(global::System.Int64 value); partial void OnMaterialIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Decimal BindQuantity { get { return _BindQuantity; } set { OnBindQuantityChanging(value); ReportPropertyChanging("BindQuantity"); _BindQuantity = StructuralObject.SetValidValue(value); ReportPropertyChanged("BindQuantity"); OnBindQuantityChanged(); } } private global::System.Decimal _BindQuantity; partial void OnBindQuantityChanging(global::System.Decimal value); partial void OnBindQuantityChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 BindStatus { get { return _BindStatus; } set { OnBindStatusChanging(value); ReportPropertyChanging("BindStatus"); _BindStatus = StructuralObject.SetValidValue(value); ReportPropertyChanged("BindStatus"); OnBindStatusChanged(); } } private global::System.Int32 _BindStatus; partial void OnBindStatusChanging(global::System.Int32 value); partial void OnBindStatusChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Decimal SampleQty { get { return _SampleQty; } set { OnSampleQtyChanging(value); ReportPropertyChanging("SampleQty"); _SampleQty = StructuralObject.SetValidValue(value); ReportPropertyChanged("SampleQty"); OnSampleQtyChanged(); } } private global::System.Decimal _SampleQty; partial void OnSampleQtyChanging(global::System.Decimal value); partial void OnSampleQtyChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.String OrderNo { get { return _OrderNo; } set { OnOrderNoChanging(value); ReportPropertyChanging("OrderNo"); _OrderNo = StructuralObject.SetValidValue(value, false); ReportPropertyChanged("OrderNo"); OnOrderNoChanged(); } } private global::System.String _OrderNo; partial void OnOrderNoChanging(global::System.String value); partial void OnOrderNoChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedTime { get { return _CreatedTime; } set { OnCreatedTimeChanging(value); ReportPropertyChanging("CreatedTime"); _CreatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedTime"); OnCreatedTimeChanged(); } } private Nullable _CreatedTime; partial void OnCreatedTimeChanging(Nullable value); partial void OnCreatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedTime { get { return _UpdatedTime; } set { OnUpdatedTimeChanging(value); ReportPropertyChanging("UpdatedTime"); _UpdatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedTime"); OnUpdatedTimeChanged(); } } private Nullable _UpdatedTime; partial void OnUpdatedTimeChanging(Nullable value); partial void OnUpdatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedUserId { get { return _CreatedUserId; } set { OnCreatedUserIdChanging(value); ReportPropertyChanging("CreatedUserId"); _CreatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedUserId"); OnCreatedUserIdChanged(); } } private Nullable _CreatedUserId; partial void OnCreatedUserIdChanging(Nullable value); partial void OnCreatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String CreatedUserName { get { return _CreatedUserName; } set { OnCreatedUserNameChanging(value); ReportPropertyChanging("CreatedUserName"); _CreatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("CreatedUserName"); OnCreatedUserNameChanged(); } } private global::System.String _CreatedUserName; partial void OnCreatedUserNameChanging(global::System.String value); partial void OnCreatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedUserId { get { return _UpdatedUserId; } set { OnUpdatedUserIdChanging(value); ReportPropertyChanging("UpdatedUserId"); _UpdatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedUserId"); OnUpdatedUserIdChanged(); } } private Nullable _UpdatedUserId; partial void OnUpdatedUserIdChanging(Nullable value); partial void OnUpdatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String UpdatedUserName { get { return _UpdatedUserName; } set { OnUpdatedUserNameChanging(value); ReportPropertyChanging("UpdatedUserName"); _UpdatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("UpdatedUserName"); OnUpdatedUserNameChanged(); } } private global::System.String _UpdatedUserName; partial void OnUpdatedUserNameChanging(global::System.String value); partial void OnUpdatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Boolean IsDeleted { get { return _IsDeleted; } set { OnIsDeletedChanging(value); ReportPropertyChanging("IsDeleted"); _IsDeleted = StructuralObject.SetValidValue(value); ReportPropertyChanged("IsDeleted"); OnIsDeletedChanged(); } } private global::System.Boolean _IsDeleted; partial void OnIsDeletedChanging(global::System.Boolean value); partial void OnIsDeletedChanged(); #endregion #region 导航属性 /// /// 没有元数据文档可用。 /// [XmlIgnoreAttribute()] [SoapIgnoreAttribute()] [DataMemberAttribute()] [EdmRelationshipNavigationPropertyAttribute("TEST", "FK_wms_materialcontainer_wms_container_ContainerId", "wms_container")] public wms_container wms_container { get { return ((IEntityWithRelationships)this).RelationshipManager.GetRelatedReference("TEST.FK_wms_materialcontainer_wms_container_ContainerId", "wms_container").Value; } set { ((IEntityWithRelationships)this).RelationshipManager.GetRelatedReference("TEST.FK_wms_materialcontainer_wms_container_ContainerId", "wms_container").Value = value; } } /// /// 没有元数据文档可用。 /// [BrowsableAttribute(false)] [DataMemberAttribute()] public EntityReference wms_containerReference { get { return ((IEntityWithRelationships)this).RelationshipManager.GetRelatedReference("TEST.FK_wms_materialcontainer_wms_container_ContainerId", "wms_container"); } set { if ((value != null)) { ((IEntityWithRelationships)this).RelationshipManager.InitializeRelatedReference("TEST.FK_wms_materialcontainer_wms_container_ContainerId", "wms_container", value); } } } /// /// 没有元数据文档可用。 /// [XmlIgnoreAttribute()] [SoapIgnoreAttribute()] [DataMemberAttribute()] [EdmRelationshipNavigationPropertyAttribute("TEST", "FK_wms_materialcontainer_wms_material_MaterialId", "wms_material")] public wms_material wms_material { get { return ((IEntityWithRelationships)this).RelationshipManager.GetRelatedReference("TEST.FK_wms_materialcontainer_wms_material_MaterialId", "wms_material").Value; } set { ((IEntityWithRelationships)this).RelationshipManager.GetRelatedReference("TEST.FK_wms_materialcontainer_wms_material_MaterialId", "wms_material").Value = value; } } /// /// 没有元数据文档可用。 /// [BrowsableAttribute(false)] [DataMemberAttribute()] public EntityReference wms_materialReference { get { return ((IEntityWithRelationships)this).RelationshipManager.GetRelatedReference("TEST.FK_wms_materialcontainer_wms_material_MaterialId", "wms_material"); } set { if ((value != null)) { ((IEntityWithRelationships)this).RelationshipManager.InitializeRelatedReference("TEST.FK_wms_materialcontainer_wms_material_MaterialId", "wms_material", value); } } } #endregion } /// /// 没有元数据文档可用。 /// [EdmEntityTypeAttribute(NamespaceName="TEST", Name="wms_materialstock")] [Serializable()] [DataContractAttribute(IsReference=true)] public partial class wms_materialstock : EntityObject { #region 工厂方法 /// /// 创建新的 wms_materialstock 对象。 /// /// Id 属性的初始值。 /// MaterialNo 属性的初始值。 /// MaterialType 属性的初始值。 /// MaterialBatch 属性的初始值。 /// MaterialName 属性的初始值。 /// InspectionMethod 属性的初始值。 /// UnitType 属性的初始值。 /// UnitNo 属性的初始值。 /// StockNumber 属性的初始值。 /// PlaceCode 属性的初始值。 /// ContainerCode 属性的初始值。 /// AreaId 属性的初始值。 /// IsDeleted 属性的初始值。 public static wms_materialstock Createwms_materialstock(global::System.Int64 id, global::System.String materialNo, global::System.Int32 materialType, global::System.String materialBatch, global::System.String materialName, global::System.Int32 inspectionMethod, global::System.Int32 unitType, global::System.Int32 unitNo, global::System.Decimal stockNumber, global::System.String placeCode, global::System.String containerCode, global::System.Int64 areaId, global::System.Boolean isDeleted) { wms_materialstock wms_materialstock = new wms_materialstock(); wms_materialstock.Id = id; wms_materialstock.MaterialNo = materialNo; wms_materialstock.MaterialType = materialType; wms_materialstock.MaterialBatch = materialBatch; wms_materialstock.MaterialName = materialName; wms_materialstock.InspectionMethod = inspectionMethod; wms_materialstock.UnitType = unitType; wms_materialstock.UnitNo = unitNo; wms_materialstock.StockNumber = stockNumber; wms_materialstock.PlaceCode = placeCode; wms_materialstock.ContainerCode = containerCode; wms_materialstock.AreaId = areaId; wms_materialstock.IsDeleted = isDeleted; return wms_materialstock; } #endregion #region 基元属性 /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 Id { get { return _Id; } set { if (_Id != value) { OnIdChanging(value); ReportPropertyChanging("Id"); _Id = StructuralObject.SetValidValue(value); ReportPropertyChanged("Id"); OnIdChanged(); } } } private global::System.Int64 _Id; partial void OnIdChanging(global::System.Int64 value); partial void OnIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.String MaterialNo { get { return _MaterialNo; } set { OnMaterialNoChanging(value); ReportPropertyChanging("MaterialNo"); _MaterialNo = StructuralObject.SetValidValue(value, false); ReportPropertyChanged("MaterialNo"); OnMaterialNoChanged(); } } private global::System.String _MaterialNo; partial void OnMaterialNoChanging(global::System.String value); partial void OnMaterialNoChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 MaterialType { get { return _MaterialType; } set { OnMaterialTypeChanging(value); ReportPropertyChanging("MaterialType"); _MaterialType = StructuralObject.SetValidValue(value); ReportPropertyChanged("MaterialType"); OnMaterialTypeChanged(); } } private global::System.Int32 _MaterialType; partial void OnMaterialTypeChanging(global::System.Int32 value); partial void OnMaterialTypeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.String MaterialBatch { get { return _MaterialBatch; } set { OnMaterialBatchChanging(value); ReportPropertyChanging("MaterialBatch"); _MaterialBatch = StructuralObject.SetValidValue(value, false); ReportPropertyChanged("MaterialBatch"); OnMaterialBatchChanged(); } } private global::System.String _MaterialBatch; partial void OnMaterialBatchChanging(global::System.String value); partial void OnMaterialBatchChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.String MaterialName { get { return _MaterialName; } set { OnMaterialNameChanging(value); ReportPropertyChanging("MaterialName"); _MaterialName = StructuralObject.SetValidValue(value, false); ReportPropertyChanged("MaterialName"); OnMaterialNameChanged(); } } private global::System.String _MaterialName; partial void OnMaterialNameChanging(global::System.String value); partial void OnMaterialNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String MaterialSpec { get { return _MaterialSpec; } set { OnMaterialSpecChanging(value); ReportPropertyChanging("MaterialSpec"); _MaterialSpec = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("MaterialSpec"); OnMaterialSpecChanged(); } } private global::System.String _MaterialSpec; partial void OnMaterialSpecChanging(global::System.String value); partial void OnMaterialSpecChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 InspectionMethod { get { return _InspectionMethod; } set { OnInspectionMethodChanging(value); ReportPropertyChanging("InspectionMethod"); _InspectionMethod = StructuralObject.SetValidValue(value); ReportPropertyChanged("InspectionMethod"); OnInspectionMethodChanged(); } } private global::System.Int32 _InspectionMethod; partial void OnInspectionMethodChanging(global::System.Int32 value); partial void OnInspectionMethodChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 UnitType { get { return _UnitType; } set { OnUnitTypeChanging(value); ReportPropertyChanging("UnitType"); _UnitType = StructuralObject.SetValidValue(value); ReportPropertyChanged("UnitType"); OnUnitTypeChanged(); } } private global::System.Int32 _UnitType; partial void OnUnitTypeChanging(global::System.Int32 value); partial void OnUnitTypeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 UnitNo { get { return _UnitNo; } set { OnUnitNoChanging(value); ReportPropertyChanging("UnitNo"); _UnitNo = StructuralObject.SetValidValue(value); ReportPropertyChanged("UnitNo"); OnUnitNoChanged(); } } private global::System.Int32 _UnitNo; partial void OnUnitNoChanging(global::System.Int32 value); partial void OnUnitNoChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Decimal StockNumber { get { return _StockNumber; } set { OnStockNumberChanging(value); ReportPropertyChanging("StockNumber"); _StockNumber = StructuralObject.SetValidValue(value); ReportPropertyChanged("StockNumber"); OnStockNumberChanged(); } } private global::System.Decimal _StockNumber; partial void OnStockNumberChanging(global::System.Decimal value); partial void OnStockNumberChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.String PlaceCode { get { return _PlaceCode; } set { OnPlaceCodeChanging(value); ReportPropertyChanging("PlaceCode"); _PlaceCode = StructuralObject.SetValidValue(value, false); ReportPropertyChanged("PlaceCode"); OnPlaceCodeChanged(); } } private global::System.String _PlaceCode; partial void OnPlaceCodeChanging(global::System.String value); partial void OnPlaceCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.String ContainerCode { get { return _ContainerCode; } set { OnContainerCodeChanging(value); ReportPropertyChanging("ContainerCode"); _ContainerCode = StructuralObject.SetValidValue(value, false); ReportPropertyChanged("ContainerCode"); OnContainerCodeChanged(); } } private global::System.String _ContainerCode; partial void OnContainerCodeChanging(global::System.String value); partial void OnContainerCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 AreaId { get { return _AreaId; } set { OnAreaIdChanging(value); ReportPropertyChanging("AreaId"); _AreaId = StructuralObject.SetValidValue(value); ReportPropertyChanged("AreaId"); OnAreaIdChanged(); } } private global::System.Int64 _AreaId; partial void OnAreaIdChanging(global::System.Int64 value); partial void OnAreaIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedTime { get { return _CreatedTime; } set { OnCreatedTimeChanging(value); ReportPropertyChanging("CreatedTime"); _CreatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedTime"); OnCreatedTimeChanged(); } } private Nullable _CreatedTime; partial void OnCreatedTimeChanging(Nullable value); partial void OnCreatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedTime { get { return _UpdatedTime; } set { OnUpdatedTimeChanging(value); ReportPropertyChanging("UpdatedTime"); _UpdatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedTime"); OnUpdatedTimeChanged(); } } private Nullable _UpdatedTime; partial void OnUpdatedTimeChanging(Nullable value); partial void OnUpdatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedUserId { get { return _CreatedUserId; } set { OnCreatedUserIdChanging(value); ReportPropertyChanging("CreatedUserId"); _CreatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedUserId"); OnCreatedUserIdChanged(); } } private Nullable _CreatedUserId; partial void OnCreatedUserIdChanging(Nullable value); partial void OnCreatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String CreatedUserName { get { return _CreatedUserName; } set { OnCreatedUserNameChanging(value); ReportPropertyChanging("CreatedUserName"); _CreatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("CreatedUserName"); OnCreatedUserNameChanged(); } } private global::System.String _CreatedUserName; partial void OnCreatedUserNameChanging(global::System.String value); partial void OnCreatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedUserId { get { return _UpdatedUserId; } set { OnUpdatedUserIdChanging(value); ReportPropertyChanging("UpdatedUserId"); _UpdatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedUserId"); OnUpdatedUserIdChanged(); } } private Nullable _UpdatedUserId; partial void OnUpdatedUserIdChanging(Nullable value); partial void OnUpdatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String UpdatedUserName { get { return _UpdatedUserName; } set { OnUpdatedUserNameChanging(value); ReportPropertyChanging("UpdatedUserName"); _UpdatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("UpdatedUserName"); OnUpdatedUserNameChanged(); } } private global::System.String _UpdatedUserName; partial void OnUpdatedUserNameChanging(global::System.String value); partial void OnUpdatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Boolean IsDeleted { get { return _IsDeleted; } set { OnIsDeletedChanging(value); ReportPropertyChanging("IsDeleted"); _IsDeleted = StructuralObject.SetValidValue(value); ReportPropertyChanged("IsDeleted"); OnIsDeletedChanged(); } } private global::System.Boolean _IsDeleted; partial void OnIsDeletedChanging(global::System.Boolean value); partial void OnIsDeletedChanged(); #endregion } /// /// 没有元数据文档可用。 /// [EdmEntityTypeAttribute(NamespaceName="TEST", Name="wms_part")] [Serializable()] [DataContractAttribute(IsReference=true)] public partial class wms_part : EntityObject { #region 工厂方法 /// /// 创建新的 wms_part 对象。 /// /// Id 属性的初始值。 /// IsDeleted 属性的初始值。 public static wms_part Createwms_part(global::System.Int64 id, global::System.Boolean isDeleted) { wms_part wms_part = new wms_part(); wms_part.Id = id; wms_part.IsDeleted = isDeleted; return wms_part; } #endregion #region 基元属性 /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 Id { get { return _Id; } set { if (_Id != value) { OnIdChanging(value); ReportPropertyChanging("Id"); _Id = StructuralObject.SetValidValue(value); ReportPropertyChanged("Id"); OnIdChanged(); } } } private global::System.Int64 _Id; partial void OnIdChanging(global::System.Int64 value); partial void OnIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String PartCode { get { return _PartCode; } set { OnPartCodeChanging(value); ReportPropertyChanging("PartCode"); _PartCode = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("PartCode"); OnPartCodeChanged(); } } private global::System.String _PartCode; partial void OnPartCodeChanging(global::System.String value); partial void OnPartCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String PartName { get { return _PartName; } set { OnPartNameChanging(value); ReportPropertyChanging("PartName"); _PartName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("PartName"); OnPartNameChanged(); } } private global::System.String _PartName; partial void OnPartNameChanging(global::System.String value); partial void OnPartNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String MaterialCode { get { return _MaterialCode; } set { OnMaterialCodeChanging(value); ReportPropertyChanging("MaterialCode"); _MaterialCode = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("MaterialCode"); OnMaterialCodeChanged(); } } private global::System.String _MaterialCode; partial void OnMaterialCodeChanging(global::System.String value); partial void OnMaterialCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable Length { get { return _Length; } set { OnLengthChanging(value); ReportPropertyChanging("Length"); _Length = StructuralObject.SetValidValue(value); ReportPropertyChanged("Length"); OnLengthChanged(); } } private Nullable _Length; partial void OnLengthChanging(Nullable value); partial void OnLengthChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable Width { get { return _Width; } set { OnWidthChanging(value); ReportPropertyChanging("Width"); _Width = StructuralObject.SetValidValue(value); ReportPropertyChanged("Width"); OnWidthChanged(); } } private Nullable _Width; partial void OnWidthChanging(Nullable value); partial void OnWidthChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable Height { get { return _Height; } set { OnHeightChanging(value); ReportPropertyChanging("Height"); _Height = StructuralObject.SetValidValue(value); ReportPropertyChanged("Height"); OnHeightChanged(); } } private Nullable _Height; partial void OnHeightChanging(Nullable value); partial void OnHeightChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Remark { get { return _Remark; } set { OnRemarkChanging(value); ReportPropertyChanging("Remark"); _Remark = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Remark"); OnRemarkChanged(); } } private global::System.String _Remark; partial void OnRemarkChanging(global::System.String value); partial void OnRemarkChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable Status { get { return _Status; } set { OnStatusChanging(value); ReportPropertyChanging("Status"); _Status = StructuralObject.SetValidValue(value); ReportPropertyChanged("Status"); OnStatusChanged(); } } private Nullable _Status; partial void OnStatusChanging(Nullable value); partial void OnStatusChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedTime { get { return _CreatedTime; } set { OnCreatedTimeChanging(value); ReportPropertyChanging("CreatedTime"); _CreatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedTime"); OnCreatedTimeChanged(); } } private Nullable _CreatedTime; partial void OnCreatedTimeChanging(Nullable value); partial void OnCreatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedTime { get { return _UpdatedTime; } set { OnUpdatedTimeChanging(value); ReportPropertyChanging("UpdatedTime"); _UpdatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedTime"); OnUpdatedTimeChanged(); } } private Nullable _UpdatedTime; partial void OnUpdatedTimeChanging(Nullable value); partial void OnUpdatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedUserId { get { return _CreatedUserId; } set { OnCreatedUserIdChanging(value); ReportPropertyChanging("CreatedUserId"); _CreatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedUserId"); OnCreatedUserIdChanged(); } } private Nullable _CreatedUserId; partial void OnCreatedUserIdChanging(Nullable value); partial void OnCreatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String CreatedUserName { get { return _CreatedUserName; } set { OnCreatedUserNameChanging(value); ReportPropertyChanging("CreatedUserName"); _CreatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("CreatedUserName"); OnCreatedUserNameChanged(); } } private global::System.String _CreatedUserName; partial void OnCreatedUserNameChanging(global::System.String value); partial void OnCreatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedUserId { get { return _UpdatedUserId; } set { OnUpdatedUserIdChanging(value); ReportPropertyChanging("UpdatedUserId"); _UpdatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedUserId"); OnUpdatedUserIdChanged(); } } private Nullable _UpdatedUserId; partial void OnUpdatedUserIdChanging(Nullable value); partial void OnUpdatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String UpdatedUserName { get { return _UpdatedUserName; } set { OnUpdatedUserNameChanging(value); ReportPropertyChanging("UpdatedUserName"); _UpdatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("UpdatedUserName"); OnUpdatedUserNameChanged(); } } private global::System.String _UpdatedUserName; partial void OnUpdatedUserNameChanging(global::System.String value); partial void OnUpdatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Boolean IsDeleted { get { return _IsDeleted; } set { OnIsDeletedChanging(value); ReportPropertyChanging("IsDeleted"); _IsDeleted = StructuralObject.SetValidValue(value); ReportPropertyChanged("IsDeleted"); OnIsDeletedChanged(); } } private global::System.Boolean _IsDeleted; partial void OnIsDeletedChanging(global::System.Boolean value); partial void OnIsDeletedChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable LineType { get { return _LineType; } set { OnLineTypeChanging(value); ReportPropertyChanging("LineType"); _LineType = StructuralObject.SetValidValue(value); ReportPropertyChanged("LineType"); OnLineTypeChanged(); } } private Nullable _LineType; partial void OnLineTypeChanging(Nullable value); partial void OnLineTypeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String CarType { get { return _CarType; } set { OnCarTypeChanging(value); ReportPropertyChanging("CarType"); _CarType = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("CarType"); OnCarTypeChanged(); } } private global::System.String _CarType; partial void OnCarTypeChanging(global::System.String value); partial void OnCarTypeChanged(); #endregion } /// /// 没有元数据文档可用。 /// [EdmEntityTypeAttribute(NamespaceName="TEST", Name="wms_place")] [Serializable()] [DataContractAttribute(IsReference=true)] public partial class wms_place : EntityObject { #region 工厂方法 /// /// 创建新的 wms_place 对象。 /// /// Id 属性的初始值。 /// PlaceCode 属性的初始值。 /// PlaceStatus 属性的初始值。 /// AreaId 属性的初始值。 /// RowNo 属性的初始值。 /// ColumnNo 属性的初始值。 /// LayerNo 属性的初始值。 /// DeepcellNo 属性的初始值。 /// Aisle 属性的初始值。 /// Line 属性的初始值。 /// Islock 属性的初始值。 /// EmptyContainer 属性的初始值。 /// Length 属性的初始值。 /// Width 属性的初始值。 /// Height 属性的初始值。 /// MaxWeight 属性的初始值。 /// HeightLevel 属性的初始值。 /// Priority 属性的初始值。 /// IsDeleted 属性的初始值。 public static wms_place Createwms_place(global::System.Int64 id, global::System.String placeCode, global::System.Int32 placeStatus, global::System.Int64 areaId, global::System.Int32 rowNo, global::System.Int32 columnNo, global::System.Int32 layerNo, global::System.Int32 deepcellNo, global::System.Int32 aisle, global::System.Int32 line, global::System.Int32 islock, global::System.Int32 emptyContainer, global::System.Decimal length, global::System.Decimal width, global::System.Decimal height, global::System.Decimal maxWeight, global::System.Int32 heightLevel, global::System.Int32 priority, global::System.Boolean isDeleted) { wms_place wms_place = new wms_place(); wms_place.Id = id; wms_place.PlaceCode = placeCode; wms_place.PlaceStatus = placeStatus; wms_place.AreaId = areaId; wms_place.RowNo = rowNo; wms_place.ColumnNo = columnNo; wms_place.LayerNo = layerNo; wms_place.DeepcellNo = deepcellNo; wms_place.Aisle = aisle; wms_place.Line = line; wms_place.Islock = islock; wms_place.EmptyContainer = emptyContainer; wms_place.Length = length; wms_place.Width = width; wms_place.Height = height; wms_place.MaxWeight = maxWeight; wms_place.HeightLevel = heightLevel; wms_place.Priority = priority; wms_place.IsDeleted = isDeleted; return wms_place; } #endregion #region 基元属性 /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 Id { get { return _Id; } set { if (_Id != value) { OnIdChanging(value); ReportPropertyChanging("Id"); _Id = StructuralObject.SetValidValue(value); ReportPropertyChanged("Id"); OnIdChanged(); } } } private global::System.Int64 _Id; partial void OnIdChanging(global::System.Int64 value); partial void OnIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.String PlaceCode { get { return _PlaceCode; } set { OnPlaceCodeChanging(value); ReportPropertyChanging("PlaceCode"); _PlaceCode = StructuralObject.SetValidValue(value, false); ReportPropertyChanged("PlaceCode"); OnPlaceCodeChanged(); } } private global::System.String _PlaceCode; partial void OnPlaceCodeChanging(global::System.String value); partial void OnPlaceCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 PlaceStatus { get { return _PlaceStatus; } set { OnPlaceStatusChanging(value); ReportPropertyChanging("PlaceStatus"); _PlaceStatus = StructuralObject.SetValidValue(value); ReportPropertyChanged("PlaceStatus"); OnPlaceStatusChanged(); } } private global::System.Int32 _PlaceStatus; partial void OnPlaceStatusChanging(global::System.Int32 value); partial void OnPlaceStatusChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 AreaId { get { return _AreaId; } set { OnAreaIdChanging(value); ReportPropertyChanging("AreaId"); _AreaId = StructuralObject.SetValidValue(value); ReportPropertyChanged("AreaId"); OnAreaIdChanged(); } } private global::System.Int64 _AreaId; partial void OnAreaIdChanging(global::System.Int64 value); partial void OnAreaIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 RowNo { get { return _RowNo; } set { OnRowNoChanging(value); ReportPropertyChanging("RowNo"); _RowNo = StructuralObject.SetValidValue(value); ReportPropertyChanged("RowNo"); OnRowNoChanged(); } } private global::System.Int32 _RowNo; partial void OnRowNoChanging(global::System.Int32 value); partial void OnRowNoChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 ColumnNo { get { return _ColumnNo; } set { OnColumnNoChanging(value); ReportPropertyChanging("ColumnNo"); _ColumnNo = StructuralObject.SetValidValue(value); ReportPropertyChanged("ColumnNo"); OnColumnNoChanged(); } } private global::System.Int32 _ColumnNo; partial void OnColumnNoChanging(global::System.Int32 value); partial void OnColumnNoChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 LayerNo { get { return _LayerNo; } set { OnLayerNoChanging(value); ReportPropertyChanging("LayerNo"); _LayerNo = StructuralObject.SetValidValue(value); ReportPropertyChanged("LayerNo"); OnLayerNoChanged(); } } private global::System.Int32 _LayerNo; partial void OnLayerNoChanging(global::System.Int32 value); partial void OnLayerNoChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 DeepcellNo { get { return _DeepcellNo; } set { OnDeepcellNoChanging(value); ReportPropertyChanging("DeepcellNo"); _DeepcellNo = StructuralObject.SetValidValue(value); ReportPropertyChanged("DeepcellNo"); OnDeepcellNoChanged(); } } private global::System.Int32 _DeepcellNo; partial void OnDeepcellNoChanging(global::System.Int32 value); partial void OnDeepcellNoChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 Aisle { get { return _Aisle; } set { OnAisleChanging(value); ReportPropertyChanging("Aisle"); _Aisle = StructuralObject.SetValidValue(value); ReportPropertyChanged("Aisle"); OnAisleChanged(); } } private global::System.Int32 _Aisle; partial void OnAisleChanging(global::System.Int32 value); partial void OnAisleChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 Line { get { return _Line; } set { OnLineChanging(value); ReportPropertyChanging("Line"); _Line = StructuralObject.SetValidValue(value); ReportPropertyChanged("Line"); OnLineChanged(); } } private global::System.Int32 _Line; partial void OnLineChanging(global::System.Int32 value); partial void OnLineChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 Islock { get { return _Islock; } set { OnIslockChanging(value); ReportPropertyChanging("Islock"); _Islock = StructuralObject.SetValidValue(value); ReportPropertyChanged("Islock"); OnIslockChanged(); } } private global::System.Int32 _Islock; partial void OnIslockChanging(global::System.Int32 value); partial void OnIslockChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 EmptyContainer { get { return _EmptyContainer; } set { OnEmptyContainerChanging(value); ReportPropertyChanging("EmptyContainer"); _EmptyContainer = StructuralObject.SetValidValue(value); ReportPropertyChanged("EmptyContainer"); OnEmptyContainerChanged(); } } private global::System.Int32 _EmptyContainer; partial void OnEmptyContainerChanging(global::System.Int32 value); partial void OnEmptyContainerChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String PositionnoForSrm { get { return _PositionnoForSrm; } set { OnPositionnoForSrmChanging(value); ReportPropertyChanging("PositionnoForSrm"); _PositionnoForSrm = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("PositionnoForSrm"); OnPositionnoForSrmChanged(); } } private global::System.String _PositionnoForSrm; partial void OnPositionnoForSrmChanging(global::System.String value); partial void OnPositionnoForSrmChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Xzb { get { return _Xzb; } set { OnXzbChanging(value); ReportPropertyChanging("Xzb"); _Xzb = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Xzb"); OnXzbChanged(); } } private global::System.String _Xzb; partial void OnXzbChanging(global::System.String value); partial void OnXzbChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Yzb { get { return _Yzb; } set { OnYzbChanging(value); ReportPropertyChanging("Yzb"); _Yzb = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Yzb"); OnYzbChanged(); } } private global::System.String _Yzb; partial void OnYzbChanging(global::System.String value); partial void OnYzbChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Zzb { get { return _Zzb; } set { OnZzbChanging(value); ReportPropertyChanging("Zzb"); _Zzb = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Zzb"); OnZzbChanged(); } } private global::System.String _Zzb; partial void OnZzbChanging(global::System.String value); partial void OnZzbChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Decimal Length { get { return _Length; } set { OnLengthChanging(value); ReportPropertyChanging("Length"); _Length = StructuralObject.SetValidValue(value); ReportPropertyChanged("Length"); OnLengthChanged(); } } private global::System.Decimal _Length; partial void OnLengthChanging(global::System.Decimal value); partial void OnLengthChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Decimal Width { get { return _Width; } set { OnWidthChanging(value); ReportPropertyChanging("Width"); _Width = StructuralObject.SetValidValue(value); ReportPropertyChanged("Width"); OnWidthChanged(); } } private global::System.Decimal _Width; partial void OnWidthChanging(global::System.Decimal value); partial void OnWidthChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Decimal Height { get { return _Height; } set { OnHeightChanging(value); ReportPropertyChanging("Height"); _Height = StructuralObject.SetValidValue(value); ReportPropertyChanged("Height"); OnHeightChanged(); } } private global::System.Decimal _Height; partial void OnHeightChanging(global::System.Decimal value); partial void OnHeightChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Decimal MaxWeight { get { return _MaxWeight; } set { OnMaxWeightChanging(value); ReportPropertyChanging("MaxWeight"); _MaxWeight = StructuralObject.SetValidValue(value); ReportPropertyChanged("MaxWeight"); OnMaxWeightChanged(); } } private global::System.Decimal _MaxWeight; partial void OnMaxWeightChanging(global::System.Decimal value); partial void OnMaxWeightChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 HeightLevel { get { return _HeightLevel; } set { OnHeightLevelChanging(value); ReportPropertyChanging("HeightLevel"); _HeightLevel = StructuralObject.SetValidValue(value); ReportPropertyChanged("HeightLevel"); OnHeightLevelChanged(); } } private global::System.Int32 _HeightLevel; partial void OnHeightLevelChanging(global::System.Int32 value); partial void OnHeightLevelChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 Priority { get { return _Priority; } set { OnPriorityChanging(value); ReportPropertyChanging("Priority"); _Priority = StructuralObject.SetValidValue(value); ReportPropertyChanged("Priority"); OnPriorityChanged(); } } private global::System.Int32 _Priority; partial void OnPriorityChanging(global::System.Int32 value); partial void OnPriorityChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedTime { get { return _CreatedTime; } set { OnCreatedTimeChanging(value); ReportPropertyChanging("CreatedTime"); _CreatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedTime"); OnCreatedTimeChanged(); } } private Nullable _CreatedTime; partial void OnCreatedTimeChanging(Nullable value); partial void OnCreatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedTime { get { return _UpdatedTime; } set { OnUpdatedTimeChanging(value); ReportPropertyChanging("UpdatedTime"); _UpdatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedTime"); OnUpdatedTimeChanged(); } } private Nullable _UpdatedTime; partial void OnUpdatedTimeChanging(Nullable value); partial void OnUpdatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedUserId { get { return _CreatedUserId; } set { OnCreatedUserIdChanging(value); ReportPropertyChanging("CreatedUserId"); _CreatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedUserId"); OnCreatedUserIdChanged(); } } private Nullable _CreatedUserId; partial void OnCreatedUserIdChanging(Nullable value); partial void OnCreatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String CreatedUserName { get { return _CreatedUserName; } set { OnCreatedUserNameChanging(value); ReportPropertyChanging("CreatedUserName"); _CreatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("CreatedUserName"); OnCreatedUserNameChanged(); } } private global::System.String _CreatedUserName; partial void OnCreatedUserNameChanging(global::System.String value); partial void OnCreatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedUserId { get { return _UpdatedUserId; } set { OnUpdatedUserIdChanging(value); ReportPropertyChanging("UpdatedUserId"); _UpdatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedUserId"); OnUpdatedUserIdChanged(); } } private Nullable _UpdatedUserId; partial void OnUpdatedUserIdChanging(Nullable value); partial void OnUpdatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String UpdatedUserName { get { return _UpdatedUserName; } set { OnUpdatedUserNameChanging(value); ReportPropertyChanging("UpdatedUserName"); _UpdatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("UpdatedUserName"); OnUpdatedUserNameChanged(); } } private global::System.String _UpdatedUserName; partial void OnUpdatedUserNameChanging(global::System.String value); partial void OnUpdatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Boolean IsDeleted { get { return _IsDeleted; } set { OnIsDeletedChanging(value); ReportPropertyChanging("IsDeleted"); _IsDeleted = StructuralObject.SetValidValue(value); ReportPropertyChanged("IsDeleted"); OnIsDeletedChanged(); } } private global::System.Boolean _IsDeleted; partial void OnIsDeletedChanging(global::System.Boolean value); partial void OnIsDeletedChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String WareLocationTypeCode { get { return _WareLocationTypeCode; } set { OnWareLocationTypeCodeChanging(value); ReportPropertyChanging("WareLocationTypeCode"); _WareLocationTypeCode = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("WareLocationTypeCode"); OnWareLocationTypeCodeChanged(); } } private global::System.String _WareLocationTypeCode; partial void OnWareLocationTypeCodeChanging(global::System.String value); partial void OnWareLocationTypeCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String UnionCode { get { return _UnionCode; } set { OnUnionCodeChanging(value); ReportPropertyChanging("UnionCode"); _UnionCode = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("UnionCode"); OnUnionCodeChanged(); } } private global::System.String _UnionCode; partial void OnUnionCodeChanging(global::System.String value); partial void OnUnionCodeChanged(); #endregion #region 导航属性 /// /// 没有元数据文档可用。 /// [XmlIgnoreAttribute()] [SoapIgnoreAttribute()] [DataMemberAttribute()] [EdmRelationshipNavigationPropertyAttribute("TEST", "FK_wms_place_wms_area_AreaId", "wms_area")] public wms_area wms_area { get { return ((IEntityWithRelationships)this).RelationshipManager.GetRelatedReference("TEST.FK_wms_place_wms_area_AreaId", "wms_area").Value; } set { ((IEntityWithRelationships)this).RelationshipManager.GetRelatedReference("TEST.FK_wms_place_wms_area_AreaId", "wms_area").Value = value; } } /// /// 没有元数据文档可用。 /// [BrowsableAttribute(false)] [DataMemberAttribute()] public EntityReference wms_areaReference { get { return ((IEntityWithRelationships)this).RelationshipManager.GetRelatedReference("TEST.FK_wms_place_wms_area_AreaId", "wms_area"); } set { if ((value != null)) { ((IEntityWithRelationships)this).RelationshipManager.InitializeRelatedReference("TEST.FK_wms_place_wms_area_AreaId", "wms_area", value); } } } #endregion } /// /// 没有元数据文档可用。 /// [EdmEntityTypeAttribute(NamespaceName="TEST", Name="wms_task")] [Serializable()] [DataContractAttribute(IsReference=true)] public partial class wms_task : EntityObject { #region 工厂方法 /// /// 创建新的 wms_task 对象。 /// /// Id 属性的初始值。 /// TaskNo 属性的初始值。 /// TaskModel 属性的初始值。 /// TaskType 属性的初始值。 /// TaskLevel 属性的初始值。 /// TaskStatus 属性的初始值。 /// ContainerCode 属性的初始值。 /// SourcePlace 属性的初始值。 /// ToPlace 属性的初始值。 /// Aisle 属性的初始值。 /// AreaName 属性的初始值。 /// OrderNo 属性的初始值。 /// SendTimes 属性的初始值。 /// DodeviceId 属性的初始值。 /// IsDeleted 属性的初始值。 public static wms_task Createwms_task(global::System.Int64 id, global::System.String taskNo, global::System.Int32 taskModel, global::System.Int32 taskType, global::System.Int32 taskLevel, global::System.Int32 taskStatus, global::System.String containerCode, global::System.String sourcePlace, global::System.String toPlace, global::System.Int32 aisle, global::System.String areaName, global::System.String orderNo, global::System.Int32 sendTimes, global::System.Int32 dodeviceId, global::System.Boolean isDeleted) { wms_task wms_task = new wms_task(); wms_task.Id = id; wms_task.TaskNo = taskNo; wms_task.TaskModel = taskModel; wms_task.TaskType = taskType; wms_task.TaskLevel = taskLevel; wms_task.TaskStatus = taskStatus; wms_task.ContainerCode = containerCode; wms_task.SourcePlace = sourcePlace; wms_task.ToPlace = toPlace; wms_task.Aisle = aisle; wms_task.AreaName = areaName; wms_task.OrderNo = orderNo; wms_task.SendTimes = sendTimes; wms_task.DodeviceId = dodeviceId; wms_task.IsDeleted = isDeleted; return wms_task; } #endregion #region 基元属性 /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=true, IsNullable=false)] [DataMemberAttribute()] public global::System.Int64 Id { get { return _Id; } set { if (_Id != value) { OnIdChanging(value); ReportPropertyChanging("Id"); _Id = StructuralObject.SetValidValue(value); ReportPropertyChanged("Id"); OnIdChanged(); } } } private global::System.Int64 _Id; partial void OnIdChanging(global::System.Int64 value); partial void OnIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.String TaskNo { get { return _TaskNo; } set { OnTaskNoChanging(value); ReportPropertyChanging("TaskNo"); _TaskNo = StructuralObject.SetValidValue(value, false); ReportPropertyChanged("TaskNo"); OnTaskNoChanged(); } } private global::System.String _TaskNo; partial void OnTaskNoChanging(global::System.String value); partial void OnTaskNoChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 TaskModel { get { return _TaskModel; } set { OnTaskModelChanging(value); ReportPropertyChanging("TaskModel"); _TaskModel = StructuralObject.SetValidValue(value); ReportPropertyChanged("TaskModel"); OnTaskModelChanged(); } } private global::System.Int32 _TaskModel; partial void OnTaskModelChanging(global::System.Int32 value); partial void OnTaskModelChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 TaskType { get { return _TaskType; } set { OnTaskTypeChanging(value); ReportPropertyChanging("TaskType"); _TaskType = StructuralObject.SetValidValue(value); ReportPropertyChanged("TaskType"); OnTaskTypeChanged(); } } private global::System.Int32 _TaskType; partial void OnTaskTypeChanging(global::System.Int32 value); partial void OnTaskTypeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 TaskLevel { get { return _TaskLevel; } set { OnTaskLevelChanging(value); ReportPropertyChanging("TaskLevel"); _TaskLevel = StructuralObject.SetValidValue(value); ReportPropertyChanged("TaskLevel"); OnTaskLevelChanged(); } } private global::System.Int32 _TaskLevel; partial void OnTaskLevelChanging(global::System.Int32 value); partial void OnTaskLevelChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 TaskStatus { get { return _TaskStatus; } set { OnTaskStatusChanging(value); ReportPropertyChanging("TaskStatus"); _TaskStatus = StructuralObject.SetValidValue(value); ReportPropertyChanged("TaskStatus"); OnTaskStatusChanged(); } } private global::System.Int32 _TaskStatus; partial void OnTaskStatusChanging(global::System.Int32 value); partial void OnTaskStatusChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.String ContainerCode { get { return _ContainerCode; } set { OnContainerCodeChanging(value); ReportPropertyChanging("ContainerCode"); _ContainerCode = StructuralObject.SetValidValue(value, false); ReportPropertyChanged("ContainerCode"); OnContainerCodeChanged(); } } private global::System.String _ContainerCode; partial void OnContainerCodeChanging(global::System.String value); partial void OnContainerCodeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.String SourcePlace { get { return _SourcePlace; } set { OnSourcePlaceChanging(value); ReportPropertyChanging("SourcePlace"); _SourcePlace = StructuralObject.SetValidValue(value, false); ReportPropertyChanged("SourcePlace"); OnSourcePlaceChanged(); } } private global::System.String _SourcePlace; partial void OnSourcePlaceChanging(global::System.String value); partial void OnSourcePlaceChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.String ToPlace { get { return _ToPlace; } set { OnToPlaceChanging(value); ReportPropertyChanging("ToPlace"); _ToPlace = StructuralObject.SetValidValue(value, false); ReportPropertyChanged("ToPlace"); OnToPlaceChanged(); } } private global::System.String _ToPlace; partial void OnToPlaceChanging(global::System.String value); partial void OnToPlaceChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 Aisle { get { return _Aisle; } set { OnAisleChanging(value); ReportPropertyChanging("Aisle"); _Aisle = StructuralObject.SetValidValue(value); ReportPropertyChanged("Aisle"); OnAisleChanged(); } } private global::System.Int32 _Aisle; partial void OnAisleChanging(global::System.Int32 value); partial void OnAisleChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.String AreaName { get { return _AreaName; } set { OnAreaNameChanging(value); ReportPropertyChanging("AreaName"); _AreaName = StructuralObject.SetValidValue(value, false); ReportPropertyChanged("AreaName"); OnAreaNameChanged(); } } private global::System.String _AreaName; partial void OnAreaNameChanging(global::System.String value); partial void OnAreaNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.String OrderNo { get { return _OrderNo; } set { OnOrderNoChanging(value); ReportPropertyChanging("OrderNo"); _OrderNo = StructuralObject.SetValidValue(value, false); ReportPropertyChanged("OrderNo"); OnOrderNoChanged(); } } private global::System.String _OrderNo; partial void OnOrderNoChanging(global::System.String value); partial void OnOrderNoChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 SendTimes { get { return _SendTimes; } set { OnSendTimesChanging(value); ReportPropertyChanging("SendTimes"); _SendTimes = StructuralObject.SetValidValue(value); ReportPropertyChanged("SendTimes"); OnSendTimesChanged(); } } private global::System.Int32 _SendTimes; partial void OnSendTimesChanging(global::System.Int32 value); partial void OnSendTimesChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Int32 DodeviceId { get { return _DodeviceId; } set { OnDodeviceIdChanging(value); ReportPropertyChanging("DodeviceId"); _DodeviceId = StructuralObject.SetValidValue(value); ReportPropertyChanged("DodeviceId"); OnDodeviceIdChanged(); } } private global::System.Int32 _DodeviceId; partial void OnDodeviceIdChanging(global::System.Int32 value); partial void OnDodeviceIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String DodevicenodeId { get { return _DodevicenodeId; } set { OnDodevicenodeIdChanging(value); ReportPropertyChanging("DodevicenodeId"); _DodevicenodeId = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("DodevicenodeId"); OnDodevicenodeIdChanged(); } } private global::System.String _DodevicenodeId; partial void OnDodevicenodeIdChanging(global::System.String value); partial void OnDodevicenodeIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String Dodevicetype { get { return _Dodevicetype; } set { OnDodevicetypeChanging(value); ReportPropertyChanging("Dodevicetype"); _Dodevicetype = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("Dodevicetype"); OnDodevicetypeChanged(); } } private global::System.String _Dodevicetype; partial void OnDodevicetypeChanging(global::System.String value); partial void OnDodevicetypeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedTime { get { return _CreatedTime; } set { OnCreatedTimeChanging(value); ReportPropertyChanging("CreatedTime"); _CreatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedTime"); OnCreatedTimeChanged(); } } private Nullable _CreatedTime; partial void OnCreatedTimeChanging(Nullable value); partial void OnCreatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedTime { get { return _UpdatedTime; } set { OnUpdatedTimeChanging(value); ReportPropertyChanging("UpdatedTime"); _UpdatedTime = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedTime"); OnUpdatedTimeChanged(); } } private Nullable _UpdatedTime; partial void OnUpdatedTimeChanging(Nullable value); partial void OnUpdatedTimeChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable CreatedUserId { get { return _CreatedUserId; } set { OnCreatedUserIdChanging(value); ReportPropertyChanging("CreatedUserId"); _CreatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("CreatedUserId"); OnCreatedUserIdChanged(); } } private Nullable _CreatedUserId; partial void OnCreatedUserIdChanging(Nullable value); partial void OnCreatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String CreatedUserName { get { return _CreatedUserName; } set { OnCreatedUserNameChanging(value); ReportPropertyChanging("CreatedUserName"); _CreatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("CreatedUserName"); OnCreatedUserNameChanged(); } } private global::System.String _CreatedUserName; partial void OnCreatedUserNameChanging(global::System.String value); partial void OnCreatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public Nullable UpdatedUserId { get { return _UpdatedUserId; } set { OnUpdatedUserIdChanging(value); ReportPropertyChanging("UpdatedUserId"); _UpdatedUserId = StructuralObject.SetValidValue(value); ReportPropertyChanged("UpdatedUserId"); OnUpdatedUserIdChanged(); } } private Nullable _UpdatedUserId; partial void OnUpdatedUserIdChanging(Nullable value); partial void OnUpdatedUserIdChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=true)] [DataMemberAttribute()] public global::System.String UpdatedUserName { get { return _UpdatedUserName; } set { OnUpdatedUserNameChanging(value); ReportPropertyChanging("UpdatedUserName"); _UpdatedUserName = StructuralObject.SetValidValue(value, true); ReportPropertyChanged("UpdatedUserName"); OnUpdatedUserNameChanged(); } } private global::System.String _UpdatedUserName; partial void OnUpdatedUserNameChanging(global::System.String value); partial void OnUpdatedUserNameChanged(); /// /// 没有元数据文档可用。 /// [EdmScalarPropertyAttribute(EntityKeyProperty=false, IsNullable=false)] [DataMemberAttribute()] public global::System.Boolean IsDeleted { get { return _IsDeleted; } set { OnIsDeletedChanging(value); ReportPropertyChanging("IsDeleted"); _IsDeleted = StructuralObject.SetValidValue(value); ReportPropertyChanged("IsDeleted"); OnIsDeletedChanged(); } } private global::System.Boolean _IsDeleted; partial void OnIsDeletedChanging(global::System.Boolean value); partial void OnIsDeletedChanged(); #endregion } #endregion }