移动系统liao
2025-01-22 20c735f3df81e9e0a8946c71344fe62ddcee9d87
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
using System;
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
namespace Models
{
    /// <summary>
    /// 办公系统厂商账户收支记录
    ///</summary>
    [SugarTable("OA_FirmAccountRecord")]
    [Tenant("ECTESTOADB")]
    public class OA_FirmAccountRecord
    {
        
     
        /// <summary>
        /// 备  注:记录编号
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName="Keyid" ,IsPrimaryKey = true,IsIdentity = true) ]
        public int Keyid  { get; set;  } 
     
        /// <summary>
        /// 备  注:科目编号
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName="SubjectId" ) ]
        public int SubjectId  { get; set;  } 
     
        /// <summary>
        /// 备  注:账户编号
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName="AccountId" ) ]
        public int AccountId  { get; set;  } 
     
        /// <summary>
        /// 备  注:收、支
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName="RecordTypeId" ) ]
        public int RecordTypeId  { get; set;  } 
     
        /// <summary>
        /// 备  注:操作金额
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName="Money" ) ]
        public decimal Money  { get; set;  } 
     
        /// <summary>
        /// 备  注:名称
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName="PaymentUnit" ) ]
        public string PaymentUnit  { get; set;  } = null!;
     
        /// <summary>
        /// 备  注:记录来源信息
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName="OperationalMatters" ) ]
        public string OperationalMatters  { get; set;  } = null!;
     
        /// <summary>
        /// 备  注:最后修改时间
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName="LastUpdateTime" ) ]
        public DateTime LastUpdateTime  { get; set;  } 
     
        /// <summary>
        /// 备  注:操作人
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName="Operator" ) ]
        public string Operator  { get; set;  } = null!;
     
        /// <summary>
        /// 备  注:备注
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName="Remark" ) ]
        public string? Remark  { get; set;  } 
     
        /// <summary>
        /// 备  注:
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName="ResidualAmount" ) ]
        public decimal? ResidualAmount  { get; set;  } 
     
        /// <summary>
        /// 备  注:
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName="Department" ) ]
        public string? Department  { get; set;  } 
    
 
    }
    
}