add ticket

This commit is contained in:
2024-08-01 15:38:20 +03:30
parent c31a2eab12
commit 3781272615
12 changed files with 508 additions and 10 deletions

View File

@ -30,5 +30,6 @@ namespace WebApplication1.Models
public virtual DbSet<tag> tags { get; set; }
public virtual DbSet<ticket> tickets { get; set; }
public virtual DbSet<user> users { get; set; }
public virtual DbSet<response> responses { get; set; }
}
}

View File

@ -29,6 +29,16 @@
<Property Name="Content" Type="nvarchar(max)" Nullable="false" />
<Property Name="views" Type="int" />
</EntityType>
<EntityType Name="response">
<Key>
<PropertyRef Name="ID" />
</Key>
<Property Name="ID" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
<Property Name="title" Type="nchar" MaxLength="10" />
<Property Name="content" Type="nchar" MaxLength="10" />
<Property Name="adminid" Type="int" />
<Property Name="ticketid" Type="int" />
</EntityType>
<EntityType Name="tag">
<Key>
<PropertyRef Name="code" />
@ -42,10 +52,11 @@
<PropertyRef Name="ID" />
</Key>
<Property Name="ID" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
<Property Name="title" Type="nvarchar" MaxLength="50" />
<Property Name="content" Type="nvarchar(max)" />
<Property Name="priority" Type="nvarchar" MaxLength="50" />
<Property Name="senderid" Type="int" />
<Property Name="title" Type="nvarchar" MaxLength="50" Nullable="false" />
<Property Name="content" Type="nvarchar(max)" Nullable="false" />
<Property Name="priority" Type="int" Nullable="false" />
<Property Name="senderid" Type="int" Nullable="false" />
<Property Name="status" Type="int" />
</EntityType>
<EntityType Name="user">
<Key>
@ -60,6 +71,7 @@
<EntityContainer Name="newswebappModelStoreContainer">
<EntitySet Name="category" EntityType="Self.category" Schema="dbo" store:Type="Tables" />
<EntitySet Name="news" EntityType="Self.news" Schema="dbo" store:Type="Tables" />
<EntitySet Name="response" EntityType="Self.response" Schema="dbo" store:Type="Tables" />
<EntitySet Name="tag" EntityType="Self.tag" Schema="dbo" store:Type="Tables" />
<EntitySet Name="ticket" EntityType="Self.ticket" Schema="dbo" store:Type="Tables" />
<EntitySet Name="user" EntityType="Self.user" Schema="dbo" store:Type="Tables" />
@ -74,6 +86,7 @@
<EntitySet Name="tags" EntityType="newswebappModel.tag" />
<EntitySet Name="tickets" EntityType="newswebappModel.ticket" />
<EntitySet Name="users" EntityType="newswebappModel.user" />
<EntitySet Name="responses" EntityType="newswebappModel.response" />
</EntityContainer>
<EntityType Name="category">
<Key>
@ -112,10 +125,11 @@
<PropertyRef Name="ID" />
</Key>
<Property Name="ID" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
<Property Name="title" Type="String" MaxLength="50" FixedLength="false" Unicode="true" />
<Property Name="content" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
<Property Name="priority" Type="String" MaxLength="50" FixedLength="false" Unicode="true" />
<Property Name="senderid" Type="Int32" />
<Property Name="title" Type="String" MaxLength="50" FixedLength="false" Unicode="true" Nullable="false" />
<Property Name="content" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" Nullable="false" />
<Property Name="priority" Type="Int32" Nullable="false" />
<Property Name="senderid" Type="Int32" Nullable="false" />
<Property Name="status" Type="Int32" />
</EntityType>
<EntityType Name="user">
<Key>
@ -127,6 +141,16 @@
<Property Name="displayname" Type="String" MaxLength="50" FixedLength="false" Unicode="true" />
<Property Name="role" Type="Int32" Nullable="false" />
</EntityType>
<EntityType Name="response">
<Key>
<PropertyRef Name="ID" />
</Key>
<Property Name="ID" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
<Property Name="title" Type="String" MaxLength="10" FixedLength="true" Unicode="true" />
<Property Name="content" Type="String" MaxLength="10" FixedLength="true" Unicode="true" />
<Property Name="adminid" Type="Int32" />
<Property Name="ticketid" Type="Int32" />
</EntityType>
</Schema>
</edmx:ConceptualModels>
<!-- C-S mapping content -->
@ -171,6 +195,7 @@
<EntitySetMapping Name="tickets">
<EntityTypeMapping TypeName="newswebappModel.ticket">
<MappingFragment StoreEntitySet="ticket">
<ScalarProperty Name="status" ColumnName="status" />
<ScalarProperty Name="senderid" ColumnName="senderid" />
<ScalarProperty Name="priority" ColumnName="priority" />
<ScalarProperty Name="content" ColumnName="content" />
@ -190,6 +215,17 @@
</MappingFragment>
</EntityTypeMapping>
</EntitySetMapping>
<EntitySetMapping Name="responses">
<EntityTypeMapping TypeName="newswebappModel.response">
<MappingFragment StoreEntitySet="response">
<ScalarProperty Name="ticketid" ColumnName="ticketid" />
<ScalarProperty Name="adminid" ColumnName="adminid" />
<ScalarProperty Name="content" ColumnName="content" />
<ScalarProperty Name="title" ColumnName="title" />
<ScalarProperty Name="ID" ColumnName="ID" />
</MappingFragment>
</EntityTypeMapping>
</EntitySetMapping>
</EntityContainerMapping>
</Mapping>
</edmx:Mappings>

View File

@ -10,6 +10,7 @@
<EntityTypeShape EntityType="newswebappModel.tag" Width="1.5" PointX="4.75" PointY="0.75" />
<EntityTypeShape EntityType="newswebappModel.ticket" Width="1.5" PointX="0.75" PointY="4.75" />
<EntityTypeShape EntityType="newswebappModel.user" Width="1.5" PointX="2.75" PointY="4.75" />
<EntityTypeShape EntityType="newswebappModel.response" Width="1.5" PointX="4.5" PointY="4.625" />
</Diagram>
</edmx:Diagrams>
</edmx:Designer>

23
Models/response.cs Normal file
View File

@ -0,0 +1,23 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated from a template.
//
// Manual changes to this file may cause unexpected behavior in your application.
// Manual changes to this file will be overwritten if the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace WebApplication1.Models
{
using System;
using System.Collections.Generic;
public partial class response
{
public int ID { get; set; }
public string title { get; set; }
public string content { get; set; }
public Nullable<int> adminid { get; set; }
public Nullable<int> ticketid { get; set; }
}
}

View File

@ -17,7 +17,8 @@ namespace WebApplication1.Models
public int ID { get; set; }
public string title { get; set; }
public string content { get; set; }
public string priority { get; set; }
public Nullable<int> senderid { get; set; }
public int priority { get; set; }
public int senderid { get; set; }
public Nullable<int> status { get; set; }
}
}