zzr99
2022-02-16 b6df3c3b0da45b6a70dd8ea152e8ea4293740a64
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
 
namespace WebAPI.Models
{
    public class M_Department
    {
        public string HName { get; set; }
        public string HNumber { get; set; }
        public int HItemID { get; set; }
    }
}