yangle
2024-07-02 03f948220b79de9ab791cbdc58e7715f5d1a2c98
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; }
 
    }
}