Kaynağa Gözat

添加提醒

lqq 8 yıl önce
ebeveyn
işleme
59b70e94eb

+ 28 - 0
Winsoft.GOV.Framework/Model/NotificationOfAction.cs

@@ -0,0 +1,28 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Runtime.Serialization;
+using System.Text;
+
+namespace Winsoft.GOV.Framework.Model
+{
+    [DataContract]
+    public enum ActionType
+    {
+        [EnumMember]
+        insert = 0,
+        [EnumMember]
+        update,
+        [EnumMember]
+        delete
+    }
+    [DataContract]
+    public class NotificationOfAction
+    {
+        public string QL_INNER_CODE { get; set; }
+        public string QL_NAME { get; set; }
+        public string QL_DEP { get; set; }
+
+        public ActionType AType { get; set; }
+    }
+}

+ 11 - 0
Winsoft.GOV.Framework/Provider/NotificationOfActionProvider.cs

@@ -0,0 +1,11 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+
+namespace Winsoft.GOV.Framework.Provider
+{
+    class NotificationOfActionProvider
+    {
+    }
+}

+ 2 - 0
Winsoft.GOV.Framework/Winsoft.GOV.Framework.csproj

@@ -56,9 +56,11 @@
     <Compile Include="Model\ApplyType.cs" />
     <Compile Include="Model\Branch.cs" />
     <Compile Include="Model\County.cs" />
+    <Compile Include="Model\NotificationOfAction.cs" />
     <Compile Include="Model\PagedResult.cs" />
     <Compile Include="Model\PowerMattersBase.cs" />
     <Compile Include="Model\PowerMattersDetail.cs" />
+    <Compile Include="Provider\NotificationOfActionProvider.cs" />
     <Compile Include="Properties\AssemblyInfo.cs" />
     <Compile Include="Provider\BaseProvider.cs" />
     <Compile Include="Provider\BranchProvider.cs" />

+ 0 - 45
Winsoft.GOV.XF.WebApi.ManagerCore/Winsoft.GOV.XF.WebApi.ManagerCore/ClientApp/app/components/controls/powermatterbase-management.component.html

@@ -138,51 +138,6 @@
                                 
                             </div>
                         </div>
-      
-                    <!--<form *ngIf="formResetToggle" class="form-horizontal" name="taskEditorForm" #f="ngForm" novalidate
-                          (ngSubmit)="f.form.valid ? save() :
-                      (!taskName.valid && showErrorAlert('Task name is required', 'Please enter a name for the task'));">
-
-
-                        <div class="form-group has-feedback">
-                            <label class="control-label col-md-2" for="taskName">{{'powerMatterBase.editor.Name' | translate}}:</label>
-                            <div class="col-md-10" [ngClass]="{'has-success': f.submitted && taskName.valid, 'has-error' : f.submitted && !taskName.valid}">
-                                <input autofocus type="text" id="taskName" name="taskName" placeholder="Enter task name" class="form-control" [(ngModel)]="taskEdit.name" #taskName="ngModel" required />
-                                <span *ngIf="f.submitted" class="glyphicon form-control-feedback" [ngClass]="{'glyphicon-ok ':taskName.valid, 'glyphicon-remove' : !taskName.valid}"></span>
-                                <span *ngIf="f.submitted && !taskName.valid" class="errorMessage">
-                                    {{'powerMatterBase.editor.TaskNameRequired' | translate}}
-                                </span>
-                            </div>
-                        </div>
-
-                        <div class="form-group description-form-group">
-                            <label class="control-label col-md-2" for="taskDescription">{{'powerMatterBase.editor.Description' | translate}}:</label>
-                            <div class="col-md-10">
-                                <input type="text" id="taskDescription" name="taskDescription" placeholder="Enter task description" class="form-control" [(ngModel)]="taskEdit.description" />
-                            </div>
-                        </div>
-                        <label class="control-label col-md-2"> </label>
-                        <div class="col-md-7">
-                            <div class="checkbox">
-                                <label>
-                                    <input name="isImportant" type="checkbox" [(ngModel)]="taskEdit.important">
-                                    {{'powerMatterBase.editor.Important' | translate}}
-                                </label>
-                            </div>
-                        </div>
-
-                        <div class="col-md-12">
-                            <hr class="edit-last-separator-hr" />
-                        </div>
-
-
-                        <div class="form-group actionBtn-form-group">
-                            <div class="pull-right">
-                                <button type="submit" class="btn btn-primary">{{'powerMatterBase.editor.AddTask' | translate}}</button>
-                            </div>
-                        </div>
-                        <div class="clearfix"></div>
-                    </form>-->
                 </div>
             </div>
         </div>