ticket and respond

This commit is contained in:
2024-08-03 17:35:24 +03:30
parent 780bfc94c8
commit be864f564b
11 changed files with 246 additions and 105 deletions

View File

@ -1,16 +0,0 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Web;
namespace WebApplication1.Models
{
public class Login
{
[Key]
public int ID { get; set; }
public string username { get; set; }
public string password { get; set; }
}
}

View File

@ -34,8 +34,8 @@
<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="title" Type="nvarchar" MaxLength="150" />
<Property Name="content" Type="nvarchar(max)" />
<Property Name="adminid" Type="int" />
<Property Name="ticketid" Type="int" />
</EntityType>
@ -52,11 +52,12 @@
<PropertyRef Name="ID" />
</Key>
<Property Name="ID" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
<Property Name="title" Type="nvarchar" MaxLength="50" Nullable="false" />
<Property Name="title" Type="nvarchar" MaxLength="150" 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" />
<Property Name="responsid" Type="int" />
</EntityType>
<EntityType Name="user">
<Key>
@ -125,11 +126,12 @@
<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" Nullable="false" />
<Property Name="title" Type="String" MaxLength="150" 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" />
<Property Name="responsid" Type="Int32" />
</EntityType>
<EntityType Name="user">
<Key>
@ -146,8 +148,8 @@
<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="title" Type="String" MaxLength="150" FixedLength="false" Unicode="true" />
<Property Name="content" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
<Property Name="adminid" Type="Int32" />
<Property Name="ticketid" Type="Int32" />
</EntityType>
@ -195,6 +197,7 @@
<EntitySetMapping Name="tickets">
<EntityTypeMapping TypeName="newswebappModel.ticket">
<MappingFragment StoreEntitySet="ticket">
<ScalarProperty Name="responsid" ColumnName="responsid" />
<ScalarProperty Name="status" ColumnName="status" />
<ScalarProperty Name="senderid" ColumnName="senderid" />
<ScalarProperty Name="priority" ColumnName="priority" />

View File

@ -20,5 +20,6 @@ namespace WebApplication1.Models
public int priority { get; set; }
public int senderid { get; set; }
public Nullable<int> status { get; set; }
public Nullable<int> responsid { get; set; }
}
}

18
Models/ticketlist.cs Normal file
View File

@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Web;
namespace WebApplication1.Models
{
public class ticketlist
{
public int ticketID { get; set; }
public int userID { get; set; }
public string username { get; set; }
public string ticketTitle { get; set; }
public int priority { get; set; }
public int? status { get; set; }
}
}