You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

31 lines
634 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace OT.Web.Ap_Code
{
public enum MaxNumberType
{
/// <summary>
/// 依據年編號
/// </summary>
Year,
/// <summary>
/// 依據年月編號
/// </summary>
Month,
/// <summary>
/// 依據年月日編號
/// </summary>
Day,
/// <summary>
/// 不需要依據年月日編號
/// </summary>
Other,
/// <summary>
/// 不需要依據年月日編號
/// </summary>
Empty
}
}