Tables [dbo].[SCProposalMeterBaseCycleCharges]
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
HeapTrue
Row Count (~)0
Created12:59:23 AM Thursday, March 21, 2019
Last Modified1:08:18 AM Thursday, March 21, 2019
NameData TypeMax Length (Bytes)Allow NullsIdentityDefault
BillingMeterCycleChargeIDint4
False
1 - 1
BillingMeterIDint4
False
BillingMeterGroupIDint4
False
CycleChargeDetailIDint4
False
DistPercentdecimal(8,6)5
False
BaseAmountmoney8
False
CreatorIDvarchar(8)8
True
CreateDatedatetime8
False
(getdate())
UpdatorIDvarchar(8)8
True
LastUpdatedatetime8
False
(getdate())
CREATE TABLE [dbo].[SCProposalMeterBaseCycleCharges]
(
[BillingMeterCycleChargeID] [int] NOT NULL IDENTITY(1, 1),
[BillingMeterID] [int] NOT NULL,
[BillingMeterGroupID] [int] NOT NULL,
[CycleChargeDetailID] [int] NOT NULL,
[DistPercent] [decimal] (8, 6) NOT NULL,
[BaseAmount] [money] NOT NULL,
[CreatorID] [varchar] (8) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[CreateDate] [datetime] NOT NULL CONSTRAINT [DF_SCProposalMeterBaseCycleCharges_CreateDate] DEFAULT (getdate()),
[UpdatorID] [varchar] (8) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[LastUpdate] [datetime] NOT NULL CONSTRAINT [DF_SCProposalMeterBaseCycleCharges_LastUpdate] DEFAULT (getdate())
) ON [PRIMARY]
GO