示例#1
0
    def __init__(self, line_code, pending_volume, pending_weight,
                 fk_operator_id):
        BaseFunc.__init__(self)

        self.line_code = line_code
        self.pending_volume = pending_volume
        self.pending_weight = pending_weight
        self.fk_operator_id = fk_operator_id
示例#2
0
    def __init__(self, fk_order_number, action, op_time, fk_operator_id,
                 remark):
        BaseFunc.__init__(self)

        self.fk_order_number = fk_order_number
        self.action = action
        self.op_time = op_time
        self.fk_operator_id = fk_operator_id
        self.remark = remark
示例#3
0
    def __init__(self, fk_order_number, order_status, status_time, remark,
                 fk_operator_id):
        BaseFunc.__init__(self)

        self.fk_order_number = fk_order_number
        self.order_status = order_status
        self.status_time = status_time
        self.remark = remark
        self.fk_operator_id = fk_operator_id
示例#4
0
 def __init__(self, name, username, password, mobile, role_type,
              fk_location_code, fk_plate):
     BaseFunc.__init__(self)
     self.name = name
     self.username = username
     self.password = password
     self.mobile = mobile
     self.role_type = role_type
     self.fk_location_code = fk_location_code
     self.fk_plate = fk_plate
示例#5
0
    def __init__(self, fk_line_code, origin_code, destination_code,
                 location_code, sequence, location_status, fk_operator_id):
        BaseFunc.__init__(self)

        self.fk_line_code = fk_line_code
        self.origin_code = origin_code
        self.destination_code = destination_code
        self.location_code = location_code
        self.sequence = sequence
        self.location_status = location_status
        self.fk_operator_id = fk_operator_id
示例#6
0
    def __init__(self, location_name, location_code, detailed_address, lot, lat, province, city, location_status):
        BaseFunc.__init__(self)

        self.location_name = location_name
        self.location_code = location_code
        self.detailed_address = detailed_address
        self.lot = lot
        self.lat = lat
        self.province = province
        self.city = city
        self.location_status = location_status
示例#7
0
    def __init__(self, line_code, line_name, origin_code, destination_code,
                 line_status, line_type, line_kilometre, line_runtime,
                 location_number, fk_operator_id):
        BaseFunc.__init__(self)

        self.line_code = line_code
        self.line_name = line_name
        self.origin_code = origin_code
        self.destination_code = destination_code
        self.line_status = line_status
        self.line_type = line_type
        self.line_kilometre = line_kilometre
        self.line_runtime = line_runtime
        self.location_number = location_number
        self.fk_operator_id = fk_operator_id
示例#8
0
    def __init__(self, plate, status, plate_type, vehicle_type, container_type,
                 container_length, container_wide, container_high,
                 container_volume, fk_operator_id):
        BaseFunc.__init__(self)

        self.plate = plate
        self.status = status
        self.container_type = container_type
        self.plate_type = plate_type
        self.vehicle_type = vehicle_type
        self.container_length = container_length
        self.container_wide = container_wide
        self.container_high = container_high
        self.container_volume = container_volume
        self.fk_operator_id = fk_operator_id
示例#9
0
    def __init__(self, waybill_number, waybill_type, waybill_status, line_no,
                 fk_to_location_code, fk_at_location_code, plate, start_time,
                 end_time, driver_name, driver_telephone, remarks,
                 fk_operator_id, create_data):
        BaseFunc.__init__(self)

        self.waybill_number = waybill_number
        self.waybill_type = waybill_type
        self.waybill_status = waybill_status
        self.line_no = line_no
        self.fk_to_location_code = fk_to_location_code
        self.fk_at_location_code = fk_at_location_code
        self.plate = plate
        self.start_time = start_time
        self.end_time = end_time
        self.driver_name = driver_name
        self.driver_telephone = driver_telephone
        self.remarks = remarks
        self.fk_operator_id = fk_operator_id
        self.create_date = create_data
示例#10
0
    def __init__(self, cargo_order_number, origin_code, destination_code,
                 order_status, order_type, cargo_name, cargo_volume,
                 cargo_weight, specified_arrival_time, consignor_name,
                 consignor_telephone, consignee_name, consignee_telephone,
                 fk_operator_id, remark, create_date):
        BaseFunc.__init__(self)

        self.cargo_order_number = cargo_order_number
        self.origin_code = origin_code
        self.destination_code = destination_code
        self.order_status = order_status
        self.order_type = order_type
        self.cargo_name = cargo_name
        self.cargo_volume = cargo_volume
        self.cargo_weight = cargo_weight
        self.specified_arrival_time = specified_arrival_time
        self.consignor_name = consignor_name
        self.consignor_telephone = consignor_telephone
        self.consignee_name = consignee_name
        self.consignee_telephone = consignee_telephone
        self.fk_operator_id = fk_operator_id
        self.remark = remark
        self.create_date = create_date
示例#11
0
    def __init__(self, telephone, verifying_code):
        BaseFunc.__init__(self)

        self.telephone = telephone
        self.verifying_code = verifying_code
示例#12
0
    def __init__(self, location_amount):
        BaseFunc.__init__(self)

        self.location_amount = location_amount
示例#13
0
    def __init__(self, fk_location_code, contacts_name, contacts_telephone):
        BaseFunc.__init__(self)

        self.fk_location_code = fk_location_code
        self.contacts_name = contacts_name
        self.contacts_telephone = contacts_telephone
示例#14
0
    def __init__(self, order_date, order_amount, order_type):
        BaseFunc.__init__(self)

        self.order_date = order_date
        self.order_amount = order_amount
        self.order_type = order_type