12312321
This commit is contained in:
5
AppCode/Entity/MQ.cs
Normal file
5
AppCode/Entity/MQ.cs
Normal file
@ -0,0 +1,5 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
94
AppCode/Entity/PenData.cs
Normal file
94
AppCode/Entity/PenData.cs
Normal file
@ -0,0 +1,94 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
public class ClassPenList
|
||||
{
|
||||
public long ClassId { get; set; }
|
||||
public List<Pens> Pens { get; set; }
|
||||
}
|
||||
|
||||
public class Pens
|
||||
{
|
||||
public string serialNo { get; set; }
|
||||
public int power { get; set; }
|
||||
}
|
||||
|
||||
|
||||
public class PenData
|
||||
{
|
||||
public long ID { get; set; }
|
||||
public string PenNo { get; set; }
|
||||
public string PenValue { get; set; }
|
||||
}
|
||||
|
||||
public class SR_Pen_coordinate
|
||||
{
|
||||
public ulong time { get; set; }
|
||||
public string penSerial { get; set; }
|
||||
public string pageSerial { get; set; }
|
||||
public ulong penType { get; set; }
|
||||
public int cx { get; set; }
|
||||
public int cy { get; set; }
|
||||
public int force { get; set; }
|
||||
public int flag { get; set; }
|
||||
}
|
||||
public class ServerResult
|
||||
{
|
||||
public int code { get; set; }
|
||||
public string msg { get; set; }
|
||||
public bool success { get; set; }
|
||||
|
||||
public object data { get; set; }
|
||||
}
|
||||
|
||||
public class PenStatus
|
||||
{
|
||||
public string serialNo { get; set; }
|
||||
public bool onlineStatus { get; set; }
|
||||
public int power { get; set; }
|
||||
|
||||
}
|
||||
|
||||
public class StudentPen
|
||||
{
|
||||
public long studentId { get; set; }
|
||||
|
||||
public string studentName { get; set; }
|
||||
|
||||
public string penSerialNo { get; set; }
|
||||
}
|
||||
|
||||
|
||||
|
||||
public class TempListiInfoServer
|
||||
{
|
||||
public string areaPoints { get; set; }
|
||||
public int type { get; set; }
|
||||
public string pageNo { get; set; }
|
||||
public int widthDotMatrix { get; set; }
|
||||
public int hightDotMatrix { get; set; }
|
||||
public string previewUrl { get; set; }
|
||||
}
|
||||
|
||||
/// 模板
|
||||
/// </summary>
|
||||
public class TempListiInfo
|
||||
{
|
||||
public long ID { get; set; }
|
||||
public string QuestionType { get; set; }
|
||||
|
||||
public string PageNo { get; set; }
|
||||
public int pageWidth { get; set; }
|
||||
|
||||
public int pageHeight { get; set; }
|
||||
|
||||
public string LayOutData { get; set; }
|
||||
|
||||
public string BackGroundImg { get; set; }
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user