duhe
2025-03-21 a1dbe4fa4573a16732a249534a7af6f28b8efccc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
 
namespace WebAPI.Models
{
    public class Xt_AccountPeriod
    {
        public long id { get; set; }
        public long HYear { get; set; }
        public long HPeriod { get; set; }
        public DateTime HBeginDate { get; set; }
        public DateTime HEndDate { get; set; }
 
        public string HEndFlag { get; set; }
 
    }
}