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.

43 lines
1.0 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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
}
}