1
2
3
4
5
6
7
8
9
10
11
12
| create table PaidMoney_Add
| (
| id int no 4 10 0 no (n/a) (n/a) NULL
| ToServiceOrdID bigint comment '服务单ID',
| ToDispatchOrdID bigint comment '调度单ID',
| AddMoneyType int comment '附加费用类型',
| AddMoney money comment '附加费用',
| AddMoneyExplain nvarchar comment '附加费用说明',
| AddMoneyTime datetime comment '附加费用时间',
| AddMoneyOAID int comment '添加用户的OAID',
|
| )
|
|