yangle
2022-07-25 061a166a87fd30ae6a4e61785e3c36a1c313f8a6
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; }
 
    }
}