File tree Expand file tree Collapse file tree 1 file changed +52
-0
lines changed Expand file tree Collapse file tree 1 file changed +52
-0
lines changed Original file line number Diff line number Diff line change
1
+ const mongoose = require ( "mongoose" ) ;
2
+
3
+ const RegSchema = new mongoose . Schema ( {
4
+ reg : {
5
+ type : String ,
6
+ required : true
7
+ } ,
8
+ cstIcms : {
9
+ type : String ,
10
+ required : true
11
+ } ,
12
+ cfop : {
13
+ type : String ,
14
+ required : true
15
+ } ,
16
+ aliqIcms : {
17
+ type : String
18
+ } ,
19
+ vlOpr : {
20
+ type : String ,
21
+ required : true
22
+ } ,
23
+ vlBcIcms : {
24
+ type : String ,
25
+ required : true
26
+ } ,
27
+ vlIcms : {
28
+ type : String ,
29
+ required : true
30
+ } ,
31
+ vlBcIcmsUf : {
32
+ type : String ,
33
+ required : true
34
+ } ,
35
+ vlIcmsUf : {
36
+ type : String ,
37
+ required : true
38
+ } ,
39
+ vlRedBc : {
40
+ type : String ,
41
+ required : true
42
+ } ,
43
+ codObs : {
44
+ type : String
45
+ } ,
46
+ reg0000 : {
47
+ type : String ,
48
+ required : true
49
+ }
50
+ } ) ;
51
+
52
+ module . exports = mongoose . model ( "regD690" , RegSchema ) ;
You can’t perform that action at this time.
0 commit comments