14 lines
407 B
C#
14 lines
407 B
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Dolphin.ExamPictureCut.Domains.Biz;
|
|
|
|
[Table(nameof(ExamSubjectSchoolStudent))]
|
|
public class ExamSubjectSchoolStudent
|
|
{
|
|
public long Id { get; set; }
|
|
public long ExamSubjectSchoolId { get; set; }
|
|
public string StudentExamNum { get; set; }
|
|
public int CollectStatus { get; set; }
|
|
public string DotPenOriginalImg { get; set; }
|
|
}
|