songjun
2024-09-04 cc908053e0b5075fbfd27350b6da4b39bca9e550
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using PalGain.Core;
using sbcLabSystem.Data.Domain.Account;
using Newtonsoft.Json;
 
namespace sbcLabSystem.Data.Domain.Backstage
{
    public class QCDistribution : BaseEntity
    {
        public string DistNo { get; set; }
        public DateTime? IssuedDate { get; set; }
        public DateTime? CloseDate { get; set; }
        public string Remark { get; set; }
        public DateTime? ModifyDate { get; set; }
        [JsonIgnore]
        public virtual List<QCDistributionRegisterInfo> QCDistributionRegisters { get; set; }
        public StandAnswerInfo StandAnswer { get; set; }
        public string AnswerJSON { get; set; }
        public bool IsAllSubmit { get; set; }
        public DateTime? AllSubmitTime { get; set; }
    }
}