You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace OpenAuth.App.DataCodeRule.Response
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 日 期:2023.03.06
|
|
|
|
|
/// 描 述:编号规则
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class CodeRuleFormatModel
|
|
|
|
|
{
|
|
|
|
|
#region 实体成员
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 项目类型
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int? itemType { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 项目类型名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string itemTypeName { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 格式化字符串
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string formatStr { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 步长
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int? stepValue { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 初始值
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int? initValue { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 备注
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string description { get; set; }
|
|
|
|
|
#endregion
|
|
|
|
|
}
|
|
|
|
|
}
|