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.
27 lines
531 B
C#
27 lines
531 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application
|
|
{
|
|
/// <summary>
|
|
/// 状态值类型枚举
|
|
/// </summary>
|
|
public enum StatusSKUValTypeEnum
|
|
{
|
|
/// <summary>
|
|
/// 日期
|
|
/// </summary>
|
|
[Description("日期")]
|
|
DATETIME,
|
|
/// <summary>
|
|
/// 已提交
|
|
/// </summary>
|
|
[Description("字符")]
|
|
STRING,
|
|
}
|
|
}
|