update code of dash and report of cont_client and devlp abstract of qty
This commit is contained in:
21
app/models/width_model.py
Normal file
21
app/models/width_model.py
Normal file
@@ -0,0 +1,21 @@
|
||||
from app import db
|
||||
|
||||
class Width(db.Model):
|
||||
__tablename__ = "width"
|
||||
|
||||
id = db.Column(db.Integer, primary_key=True)
|
||||
Dia_mm = db.Column(db.Numeric(10, 2), default=0)
|
||||
|
||||
pipe_150_mm = db.Column(db.Numeric(10, 2), default=0)
|
||||
pipe_200_mm = db.Column(db.Numeric(10, 2), default=0)
|
||||
pipe_250_mm = db.Column(db.Numeric(10, 2), default=0)
|
||||
pipe_300_mm = db.Column(db.Numeric(10, 2), default=0)
|
||||
pipe_350_mm = db.Column(db.Numeric(10, 2), default=0)
|
||||
pipe_400_mm = db.Column(db.Numeric(10, 2), default=0)
|
||||
pipe_450_mm = db.Column(db.Numeric(10, 2), default=0)
|
||||
pipe_500_mm = db.Column(db.Numeric(10, 2), default=0)
|
||||
pipe_600_mm = db.Column(db.Numeric(10, 2), default=0)
|
||||
pipe_700_mm = db.Column(db.Numeric(10, 2), default=0)
|
||||
pipe_900_mm = db.Column(db.Numeric(10, 2), default=0)
|
||||
pipe_1200_mm = db.Column(db.Numeric(10, 2), default=0)
|
||||
|
||||
Reference in New Issue
Block a user