using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.App.DataCodeRule.Response
{
///
/// 日 期:2023.03.06
/// 描 述:编号规则
///
public class CodeRuleFormatModel
{
#region 实体成员
///
/// 项目类型
///
public int? itemType { get; set; }
///
/// 项目类型名称
///
public string itemTypeName { get; set; }
///
/// 格式化字符串
///
public string formatStr { get; set; }
///
/// 步长
///
public int? stepValue { get; set; }
///
/// 初始值
///
public int? initValue { get; set; }
///
/// 备注
///
public string description { get; set; }
#endregion
}
}