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,FENTRYID) values (?,?,?)
--UPDATE脚本--
update T_PA_ACCTOBJ_30330 set FID=?,FBILLNO=?,FENTRYID=? where FID=?
--delete脚本--
delete from T_PA_ACCTOBJ_30330 where FID=?
--给字段加备注--
alter table T_PA_ACCTOBJ_30330 comment '薪酬模块中的项目考勤项目分类';
alter table T_PA_ACCTOBJ_30330 modify column FID int not null comment '内码';
alter table T_PA_ACCTOBJ_30330 modify column FBILLNO nvarchar(30) default null comment '编码';
alter table T_PA_ACCTOBJ_30330 modify column FENTRYID int default null comment '子核算对象内码';
T_PA_PAYOBJ_30330(薪酬模块中的项目分类考勤项目) | |||||||
是否主键 | 字段名 | 字段描述 | 数据类型 | 长度 | 可空 | 缺省值 | 备注 |
✓ | FID | 内码 | int | 0 | |||
FBILLNO | 编码 | nvarchar | 30 | ✓ | |||
FENTRYID | 核算对象内码 | int | ✓ |
--建表脚本--
create table T_PA_PAYOBJ_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_PAYOBJ_30330
--查询(中文字段)--
select FID as "内码",FBILLNO as "编码",FENTRYID as "核算对象内码" from T_PA_PAYOBJ_30330
--INSERT脚本--
insert into T_PA_PAYOBJ_30330(FID,FBILLNO,FENTRYID) values (?,?,?)
--UPDATE脚本--
update T_PA_PAYOBJ_30330 set FID=?,FBILLNO=?,FENTRYID=? where FID=?
--delete脚本--
delete from T_PA_PAYOBJ_30330 where FID=?
--给字段加备注--
alter table T_PA_PAYOBJ_30330 comment '薪酬模块中的项目分类考勤项目';
alter table T_PA_PAYOBJ_30330 modify column FID int not null comment '内码';
alter table T_PA_PAYOBJ_30330 modify column FBILLNO nvarchar(30) default null comment '编码';
alter table T_PA_PAYOBJ_30330 modify column FENTRYID int default null comment '核算对象内码';
ATS考勤2.22考勤计算(出差单多语言表、薪酬模块中的项目考勤项目分类、项目分类考勤项目)
本文2024-09-16 18:17:22发表“云星空知识”栏目。
本文链接:https://wenku.my7c.com/article/kingdee-k3cloud-21174.html