yzh
2022-06-20 088ffc818b13bf7bca56eb2f7f323d833fce382c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
 
using System.Text.RegularExpressions;
 
namespace Model
{
  public class SysXh
    {
        public string xhId { get; set; }
 
        public string xhPrefix { get; set; }    //序号前缀
 
        public string returnRules { get; set; } //回归规则:Y-按年、M-按月、D-按日
 
        public string currentReturnStr { get; set; }    //当前回归串
 
        public int currentNum { get; set; } //当前序数
 
        public int xhLength { get; set; }    //序号长度
 
        public string remark { get; set; }  //备注
    }
 
}