服务端的TigerApi 框架,基于.NET6 2024 版本
Ben Lin
2024-05-08 b674ec171725dee1911483f0a1dbc0b3b9ad4ce5
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
using System;
using SqlSugar;
using System.Linq;
using System.ComponentModel;
using System.Collections.Generic;
 
namespace Tiger.Model
{
    /// <summary>
    /// ÊµÌ壺°à´Îʱ¶Î
    /// </summary>
    [Description("Primary:ID")]
    [Serializable]
    [SugarTable("MES_SHIFT_PRD")]
    public class MES_SHIFT_PRD : DbEntity
    {
        #region ¹¹Ô캯Êý
        /// <summary>
        /// ÊµÌ壺°à´Îʱ¶Î
        /// </summary>
        public MES_SHIFT_PRD() {}
        #endregion
 
        #region ¹«¹²ÊôÐÔ
        /// <summary>
        /// Ê±¶Î´úÂë
        /// </summary>
        public string PRD_CODE { get; set; }
        /// <summary>
        /// Ê±¶ÎÃû³Æ
        /// </summary>
        public string PRD_NAME { get; set; }
        /// <summary>
        /// °à´Î´úÂë
        /// </summary>
        public string SFT_CODE { get; set; }
        /// <summary>
        /// Ê±¶Î¿ªÊ¼Ê±¼ä
        /// </summary>
        public int SFT_BEGIN { get; set; }
        /// <summary>
        /// Ê±¶Î½áÊøÊ±¼ä
        /// </summary>
        public int SFT_END { get; set; }
        /// <summary>
        /// Ê±¶ÎÅÅÐò
        /// </summary>
        public int SEQ { get; set; }
        /// <summary>
        /// ÊÇ·ñ¿çÌì(Y/N)
        /// </summary>
        public string IS_ACROSS_DAY { get; set; }
        /// <summary>
        /// ±¸×¢
        /// </summary>
        public string REMARK { get; set; }
        #endregion
 
        #region ÐéÄâÊôÐÔ
        /*Àý×Ó
        [SugarColumn(IsIgnore = true)]
        public string FieldName { get; set; }
        */
        #endregion
 
        #region Ã¶¾Ù±äÁ¿
        /*Àý×Ó
        public enum FieldNames
        {
            [Description("ö¾ÙÃèÊö0")]
            Enum0,
            [Description("ö¾ÙÃèÊö1")]
            Enum1,
        }
        */
        #endregion
 
        #region ¹«¹²·½·¨
 
        #endregion
 
    }//endClass
}