ATS考勤2.22考勤计算(出差单多语言表、薪酬模块中的项目考勤项目分类、项目分类考勤项目)

| T_ATS_TRIP_L(出差单多语言表) | |||||||
| 是否主键 | 字段名 | 字段描述 | 数据类型 | 长度 | 可空 | 缺省值 | 备注 |
| ✓ | FPKID | 多语言内码 | int | 0 | |||
| FID | 出差单内码 | int | ✓ | ||||
| FLOCALEID | 语种 | int | ✓ | ||||
| FDESCRIPTION | 备注 | nvarchar | 255 | ' ' | |||
| FTRIPREASON | 出差原因 | nvarchar | 80 | ✓ | |||
--建表脚本--
create table T_ATS_TRIP_L(
FPKID int not null comment '多语言内码'
,FID int default null comment '出差单内码'
,FLOCALEID int default null comment '语种'
,FDESCRIPTION nvarchar(255) not null comment '备注'
,FTRIPREASON nvarchar(80) default null comment '出差原因'
,primary key (FPKID)
) comment = '出差单多语言表'
--查询--
select FPKID as "fpkid",FID as "fid",FLOCALEID as "flocaleid",FDESCRIPTION as "fdescription",FTRIPREASON as "ftripreason" from T_ATS_TRIP_L
--查询(中文字段)--
select FPKID as "多语言内码",FID as "出差单内码",FLOCALEID as "语种",FDESCRIPTION as "备注",FTRIPREASON as "出差原因" from T_ATS_TRIP_L
--INSERT脚本--
insert into T_ATS_TRIP_L(FPKID,FID,FLOCALEID,FDESCRIPTION,FTRIPREASON) values (?,?,?,?,?)
--UPDATE脚本--
update T_ATS_TRIP_L set FPKID=?,FID=?,FLOCALEID=?,FDESCRIPTION=?,FTRIPREASON=? where FPKID=?
--delete脚本--
delete from T_ATS_TRIP_L where FPKID=?
--给字段加备注--
alter table T_ATS_TRIP_L comment '出差单多语言表';
alter table T_ATS_TRIP_L modify column FPKID int not null comment '多语言内码';
alter table T_ATS_TRIP_L modify column FID int default null comment '出差单内码';
alter table T_ATS_TRIP_L modify column FLOCALEID int default null comment '语种';
alter table T_ATS_TRIP_L modify column FDESCRIPTION nvarchar(255) not null comment '备注';
alter table T_ATS_TRIP_L modify column FTRIPREASON nvarchar(80) default null comment '出差原因';
| T_PA_ACCTOBJ_30330(薪酬模块中的项目考勤项目分类) | |||||||
| 是否主键 | 字段名 | 字段描述 | 数据类型 | 长度 | 可空 | 缺省值 | 备注 |
| ✓ | FID | 内码 | int | 0 | |||
| FBILLNO | 编码 | nvarchar | 30 | ✓ | |||
| FENTRYID | 子核算对象内码 | int | ✓ | ||||
--建表脚本--
create table T_PA_ACCTOBJ_30330(
FID int not null comment '内码'
,FBILLNO nvarchar(30) default null comment '编码'
,FENTRYID int default null comment '子核算对象内码'
,primary key (FID)
) comment = '薪酬模块中的项目考勤项目分类'
--查询--
select FID as "fid",FBILLNO as "fbillno",FENTRYID as "fentryid" from T_PA_ACCTOBJ_30330
--查询(中文字段)--
select FID as "内码",FBILLNO as "编码",FENTRYID as "子核算对象内码" from T_PA_ACCTOBJ_30330
--INSERT脚本--
insert into T_PA_ACCTOBJ_30330(FID,FBILLNO
ATS考勤2.22考勤计算(出差单多语言表、薪酬模块中的项目考勤项目分类、项目分类考勤项目)
声明:除非特别标注,否则均为本站原创文章,转载时请以链接形式注明文章出处。如若本站内容侵犯了原著者的合法权益,可联系本站删除。



