File tree Expand file tree Collapse file tree 4 files changed +7
-0
lines changed
StrDss.Model/RentalReportDtos Expand file tree Collapse file tree 4 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -49,6 +49,7 @@ CREATE OR REPLACE VIEW dss_rental_listing_vw AS select drl.rental_listing_id
49
49
, demt .email_message_type_nm as last_action_nm
50
50
, dem .message_delivery_dtm as last_action_dtm
51
51
, dbl .business_licence_id
52
+ , dbl .business_licence_no as business_licence_no_matched
52
53
FROM dss_rental_listing drl
53
54
join dss_organization org on org .organization_id = drl .offering_organization_id
54
55
LEFT JOIN dss_listing_status_type dlst on drl .listing_status_type = dlst .listing_status_type
Original file line number Diff line number Diff line change @@ -960,6 +960,9 @@ protected override void OnModelCreating(ModelBuilder modelBuilder)
960
960
entity . Property ( e => e . BusinessLicenceNo )
961
961
. HasMaxLength ( 320 )
962
962
. HasColumnName ( "business_licence_no" ) ;
963
+ entity . Property ( e => e . BusinessLicenceNoMatched )
964
+ . HasMaxLength ( 50 )
965
+ . HasColumnName ( "business_licence_no_matched" ) ;
963
966
entity . Property ( e => e . EconomicRegionDsc )
964
967
. HasMaxLength ( 100 )
965
968
. HasColumnName ( "economic_region_dsc" ) ;
Original file line number Diff line number Diff line change @@ -90,4 +90,6 @@ public partial class DssRentalListingVw
90
90
public DateTime ? LastActionDtm { get ; set ; }
91
91
92
92
public long ? BusinessLicenceId { get ; set ; }
93
+
94
+ public string ? BusinessLicenceNoMatched { get ; set ; }
93
95
}
Original file line number Diff line number Diff line change @@ -80,6 +80,7 @@ public class RentalListingViewDto
80
80
81
81
public string ? LastActionNm { get ; set ; }
82
82
public long ? BusinessLicenceId { get ; set ; }
83
+ public string ? BusinessLicenceNoMatched { get ; set ; }
83
84
public DateTime ? LastActionDtm { get ; set ; }
84
85
public bool HasAtLeastOneValidHostEmail { get ; set ; }
85
86
public List < HostInfo > HostsInfo { get ; set ; } = new List < HostInfo > ( ) ;
You can’t perform that action at this time.
0 commit comments