95 lines
1.9 KiB
C#
95 lines
1.9 KiB
C#
|
|
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; }
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|