杨张扬
4 天以前 c2d2f4eb78c54bdfdb6ffb0df5932751d538ed14
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace HH.WCS.Mobox3.DoubleCoin.models
{
    /// <summary>
    /// 规格时间配置表
    /// </summary>
    [SugarTable("TN_TN_TN_SPE")]
    public class TN_TN_SPE : BaseModel
    {
        /// <summary>
        /// 规格
        /// </summary>
        public string S_SPE { get; set; }
 
        /// <summary>
        /// 过期时间,单位:小时
        /// </summary>
        public int? N_EXPIRE_TIME { get; set; }
 
        /// <summary>
        /// 静置时间,单位:分钟
        /// </summary>
        public int? N_STANDING_TIME { get; set; }
    }
}