|
using System.Text.RegularExpressions;
|
|
namespace Model
|
{
|
public class SysXh
|
{
|
public string xhId { get; set; }
|
public string xhName { 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; } //备注
|
}
|
|
}
|