1
zrg
2025-12-23 7cedabdd5ebd172df3a8b343439f7c4c639b043f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace Model
{
    public class ClsQC_OutCompCheckBillSub_BadReason
    {
        public long HInterID { get; set; }
        public string HBillNo_bak { get; set; }
        public int HEntryID { get; set; }
        public string HCloseMan { get; set; }
        public DateTime? HEntryCloseDate { get; set; }
        public bool HCloseType { get; set; }
        public string HRemark { get; set; }
        public int HBadReasonID { get; set; }
        public decimal HQty { get; set; }
        public DateTime HCheckTime { get; set; }
    }
}