xkrs_ms/ruoyi/sql/rent_price.sql
purple c0cc060384 bug (住宅租赁):修复导入bug
1. 添加面积字段
2. 删除插入自定义表多余字段
3. 去掉人工修正租赁基价id自增
4. 添加创建租赁视图
2020-07-20 16:04:14 +08:00

11 lines
315 B
Transact-SQL

create type [dbo].[DWA_PROJECTBASEPRICE_RENT_MANU_Table] as table(
ID int not null
, ProjectID nvarchar(32) primary key
, MainCoff_Rent decimal(7, 4)
, RentPrice decimal(18, 2)
, MainRentPrice decimal(18, 2)
, RentPrice_1 decimal(18, 2)
, VOPPAT varchar(64)
, VOPPA decimal(18, 6)
)
go