<?xml version="1.0" encoding="UTF-8"?> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"> <xs:element name="IR56B"> <xs:complexType> <xs:sequence> <xs:element name="Section"> <!-- Section --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:length value="3" /> <xs:pattern value="[0-9a-zA-Z]*" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="ERN"> <!-- ERN --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:minLength value="1" /> <xs:maxLength value="8" /> <xs:pattern value="[0-9]*" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="YrErReturn"> <!-- Year of Employer’s Return --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:length value="4" /> <xs:pattern value="[0-9]*" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="SubDate"> <!-- Submission Date --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:length value="8" /> <xs:pattern value="[0-9]*" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="ErName"> <!-- Employer’s Name --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:minLength value="1" /> <xs:maxLength value="70" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="Designation"> <!-- Designation --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:maxLength value="25" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="NoRecordBatch"> <!-- No. of Records in Batch --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:minLength value="1" /> <xs:maxLength value="5" /> <xs:pattern value="[0-9]*" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="TotIncomeBatch"> <!-- Total Income in Batch --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:minLength value="1" /> <xs:maxLength value="11" /> <xs:pattern value="[0-9]*" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="Employee" minOccurs="1" maxOccurs="unbounded"> <!-- Employee’s IR56B record --> <xs:complexType> <xs:sequence> <xs:element name="SheetNo"> <!-- Sheet No --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:minLength value="1" /> <xs:maxLength value="6" /> <xs:pattern value="[0-9]*" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="HKID" default="AA000000A"> <!-- Employee’s HKID with Check Digit --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:maxLength value="9" /> <xs:pattern value="[A-Z a-z]{0,1}[A-Za-z]{1}[0-9]{6}[Aa0-9]{0,1}" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="TypeOfForm"> <!-- Status --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:enumeration value="O" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="Surname"> <!-- Employee’s Surname --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:minLength value="1" /> <xs:maxLength value="20" /> <xs:pattern value="[A-Za-z'\.\-]*" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="GivenName"> <!-- Employee’s Given Names in Full --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:minLength value="1" /> <xs:maxLength value="55" /> <xs:pattern value="[A-Z a-z0-9!#$%&\*\(\)_\+\-=\\:";'<>?,\./@]*" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="NameInChinese"> <!-- Employee’s Full Name in Chinese --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:maxLength value="25" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="Sex"> <!-- Employee’s Sex --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:enumeration value="M" /> <xs:enumeration value="F" /> <xs:enumeration value="m" /> <xs:enumeration value="f" /> <xs:enumeration value="" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="MaritalStatus"> <!-- Employee’s Marital Status --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:enumeration value="1" /> <xs:enumeration value="2" /> <xs:enumeration value="" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="PpNum"> <!-- Employee’s Passport No. and Country of Issue --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:maxLength value="40" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="SpouseName"> <!-- Spouse’s Name --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:maxLength value="50" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="SpouseHKID"> <!-- Spouse’s HKID with Check Digit --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:maxLength value="9" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="SpousePpNum"> <!-- Spouse’s Passport No. and Country of Issue --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:maxLength value="40" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="ResAddr"> <!-- Employee’s Residential Address --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:maxLength value="90" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="AreaCodeResAddr"> <!-- Area Code of Employee’s Residential Address --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:maxLength value="1" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="PosAddr"> <!-- Employee’s Postal Address --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:maxLength value="60" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="Capacity"> <!-- Capacity in which Employed --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:maxLength value="40" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="PtPrinEmp"> <!-- If Part Time, Name of Principal Employer --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:maxLength value="30" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="StartDateOfEmp"> <!-- Start Date of Employment --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:length value="8" /> <xs:pattern value="[0-9]*" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="EndDateOfEmp"> <!-- End Date of Employment --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:length value="8" /> <xs:pattern value="[0-9]*" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="PerOfSalary"> <!-- Period of Salary/Wages --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:maxLength value="19" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="AmtOfSalary" type="amount" /> <!-- Amount of Salary/Wages --> <xs:element name="PerOfLeavePay"> <!-- Period of Leave Pay --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:maxLength value="19" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="AmtOfLeavePay" type="amount" /> <!-- Amount of Leave Pay --> <xs:element name="PerOfDirectorFee"> <!-- Period of Director’s Fee --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:maxLength value="19" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="AmtOfDirectorFee" type="amount" /> <!-- Amount of Director’s Fee --> <xs:element name="PerOfCommFee"> <!-- Period of Commission /Fees --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:maxLength value="19" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="AmtOfCommFee" type="amount" /> <!-- Amount of Commission /Fees --> <xs:element name="PerOfBonus"> <!-- Period of Bonus --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:maxLength value="19" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="AmtOfBonus" type="amount" /> <!-- Amount of Bonus --> <xs:element name="PerOfBpEtc"> <!-- Period of Back Pay, Payment in Lieu of Notice, Terminal Awards or Gratuities, etc. --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:maxLength value="19" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="AmtOfBpEtc" type="amount" /> <!-- Amount of Back Pay, Payment in Lieu of Notice, Terminal Awards or Gratuities, etc. --> <xs:element name="PerOfPayRetire"> <!-- Period of Certain Payments from Retirement Schemes --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:maxLength value="19" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="AmtOfPayRetire" type="amount" /> <!-- Amount of Certain Payments from Retirement Schemes --> <xs:element name="PerOfSalTaxPaid"> <!-- Period of Salaries Tax Paid by Employer --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:maxLength value="19" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="AmtOfSalTaxPaid" type="amount" /> <!-- Amount of Salaries Tax Paid by Employer --> <xs:element name="PerOfEduBen"> <!-- Period of Education Benefits --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:maxLength value="19" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="AmtOfEduBen" type="amount" /> <!-- Amount of Education Benefits --> <xs:element name="PerOfGainShareOption"> <!-- Period of Gain Realized Under Share Option Scheme --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:maxLength value="19" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="AmtOfGainShareOption" type="amount" /> <!-- Amount of Gain Realized Under Share Option Scheme --> <xs:element name="NatureOtherRAP1"> <!-- Nature of 1st Other Rewards, Allowances or Perquisites --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:maxLength value="35" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="PerOfOtherRAP1"> <!-- Period of 1st Other Rewards, Allowances or Perquisites --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:maxLength value="19" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="AmtOfOtherRAP1" type="amount" /> <!-- Amount of 1st Other Rewards, Allowances or Perquisites --> <xs:element name="NatureOtherRAP2"> <!-- Nature of 2nd Other Rewards, Allowances or Perquisites --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:maxLength value="35" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="PerOfOtherRAP2"> <!-- Period of 2nd Other Rewards, Allowances or Perquisites --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:maxLength value="19" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="AmtOfOtherRAP2" type="amount" /> <!-- Amount of 2nd Other Rewards, Allowances or Perquisites --> <xs:element name="NatureOtherRAP3"> <!-- Nature of 3rd Other Rewards, Allowances or Perquisites --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:maxLength value="35" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="PerOfOtherRAP3"> <!-- Period of 3rd Other Rewards, Allowances or Perquisites --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:maxLength value="19" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="AmtOfOtherRAP3" type="amount" /> <!-- Amount of 3rd Other Rewards, Allowances or Perquisites --> <xs:element name="PerOfPension"> <!-- Period of Pensions --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:maxLength value="19" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="AmtOfPension" type="amount" /> <!-- Amount of Pensions --> <xs:element name="TotalIncome"> <!-- Total Income --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:minLength value="1" /> <xs:maxLength value="9" /> <xs:pattern value="[0-9]*" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="PlaceOfResInd"> <!-- Place of Residence Indicator --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:enumeration value="0" /> <xs:enumeration value="1" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="AddrOfPlace1"> <!-- Address of 1st Place of Residence --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:maxLength value="110" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="NatureOfPlace1"> <!-- Nature of 1st Place of Residence --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:maxLength value="19" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="PerOfPlace1"> <!-- Period of 1st Place of Residence --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:maxLength value="26" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="RentPaidEr1" type="rentAmt" /> <!-- Rent of 1st Place of Residence Paid to Landlord by Employer --> <xs:element name="RentPaidEe1" type="rentAmt" /> <!-- Rent of 1st Place of Residence Paid to Landlord by Employee --> <xs:element name="RentRefund1" type="rentAmt" /> <!-- Rent of 1st Place of Residence Refunded to Employee --> <xs:element name="RentPaidErByEe1" type="rentAmt" /> <!-- Rent of 1st Place of Residence Paid to Employer by Employee --> <xs:element name="AddrOfPlace2"> <!-- Address of 2nd Place of Residence --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:maxLength value="110" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="NatureOfPlace2"> <!-- Nature of 2nd Place of Residence --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:maxLength value="19" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="PerOfPlace2"> <!-- Period of 2nd Place of Residence --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:maxLength value="26" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="RentPaidEr2" type="rentAmt" /> <!-- Rent of 2nd Place of Residence Paid to Landlord by Employer --> <xs:element name="RentPaidEe2" type="rentAmt" /> <!-- Rent of 2nd Place of Residence Paid to Landlord by Employee --> <xs:element name="RentRefund2" type="rentAmt" /> <!-- Rent of 2nd Place of Residence Refunded to Employee --> <xs:element name="RentPaidErByEe2" type="rentAmt" /> <!-- Rent of 2nd Place of Residence Paid to Employer by Employee --> <xs:element name="OverseaIncInd"> <!-- Overseas Income Indicator --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:enumeration value="0" /> <xs:enumeration value="1" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="AmtPaidOverseaCo"> <!-- Amount Paid by Overseas Company --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:maxLength value="20" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="NameOfOverseaCo"> <!-- Name of Overseas Company --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:maxLength value="60" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="AddrOfOverseaCo"> <!-- Address of Overseas Company --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:maxLength value="60" /> </xs:restriction> </xs:simpleType> </xs:element> <xs:element name="Remarks"> <!-- Remarks --> <xs:simpleType> <xs:restriction base="xs:string"> <xs:maxLength value="60" /> </xs:restriction> </xs:simpleType> </xs:element> </xs:sequence> </xs:complexType> </xs:element> </xs:sequence> </xs:complexType> </xs:element> <xs:simpleType name="amount"> <xs:restriction base="xs:string"> <xs:maxLength value="9" /> <xs:pattern value="[0-9]*" /> </xs:restriction> </xs:simpleType> <xs:simpleType name="rentAmt"> <xs:restriction base="xs:string"> <xs:maxLength value="7" /> <xs:pattern value="[0-9]*" /> </xs:restriction> </xs:simpleType> </xs:schema>
相关推荐
codemirror版本:https://codemirror.net/5/doc/releases.html
外国电影演员识别系统源码分享
mf3010 打印扫描一体机驱动管理软件。
2024免费毕业设计成品,包括源码+数据库+往届论文资料 启动教程:https://www.bilibili.com/video/BV11ktveuE2d 讲解视频:https://www.bilibili.com/video/BV1YfkHYwEME 二次开发教程:https://www.bilibili.com/video/BV1Cw2rY1ErC
chrome-headless-shell-linux64-135.0.7004.0 (Canary).zip
DeepSeek大模型介绍与展望.pptx
英特尔的公版原理图和PCB,cadence版本
《单容水箱液位精准调控:模糊控制策略的深度研究与复现》,单容水箱液位随动系统的模糊控制研究 模糊控制lunwen复现 期刊:化工与自动化仪表(2021年) 图1为结构图,图9为原文结构图, 版本不一样,器件略有调整 图7为结果图,图8为原文结果图 ,单容水箱液位;模糊控制;研究;论文复现;期刊;化工与自动化仪表;结构图;结果图;版本差异;器件调整,"模糊控制研究在单容水箱液位随动系统中的应用与复现"
一个windows上使用的搜索小工具
内容: 这份数据集包含了来自国际大洋发现计划(IODP)第342航次站点U1405、U1406、U1407、U1409和U1410的浮游有孔虫碳酸盐团簇同位素、稳定氧和碳同位素,以及沉积物中的GDGT(甘油二烷基甘油四醚)和烯酮数据。这些站点位于北大西洋的新foundland脊(U1407、U1409和U1410)和J-异常脊(U1405和U1406),用于创建覆盖整个新生代的几乎连续但低分辨率(约每92万年一个样本)的数据拼接,并重建了碳酸盐团簇同位素、TEX86和UK'37海表温度。每个样本包含20立方厘米的沉积物,覆盖2厘米的核心深度区间。年龄模型主要基于详细的船上生物-磁性地层学研究(Norris等,2014)。然而,在40.8 Ma至44.8 Ma时间段内,使用了Cappelli等人(2019)更新的U1410站点年龄模型,通过与U1408站点的年龄模型对比来确定。 访问此数据集,请点击这里:"" ()。
厨房用品分割系统源码&数据集分享
.
监控鞋类物品检测系统源码分享
2024免费毕业设计成品,包括源码+数据库+往届论文资料 启动教程:https://www.bilibili.com/video/BV11ktveuE2d 讲解视频:https://www.bilibili.com/video/BV1YfkHYwEME 二次开发教程:https://www.bilibili.com/video/BV1Cw2rY1ErC
曲线图异常波形检测系统源码分享
内容概要:本文介绍了动车组车号自动识别的现状及其存在的问题,提出了基于图像识别技术的新方法。文中详述了传统人工识别与RFID识别方法的不足,重点阐述了一种新的图像识别系统的设计与实施方案,该系统能够实现在多种恶劣环境下高效精确地获取动车组车号,并通过实际案例展示了这套系统的优势以及其在铁路行业的广阔应用前景。 适用人群:从事铁路运输管理、轨道交通系统开发维护的技术人员,尤其是负责动车组调度、监控及维修工作的相关人员。 使用场景及目标:①用于替代现有人工记录与RFID标签方式,提升动车组车号识别精度与效率;②适用于各种天气状况下的户外作业场景;③旨在构建更加智能化、信息化程度更高的铁路运输体系,助力智慧动车段建设。 其他说明:文中还包括具体的实验对比和技术细节分析,如不同的开机触发装置选择、图像采集设备参数设置、补光措施及识别算法的设计,强调了实际应用场景中可能遇到的问题以及相应的解决方案。
基于AnythingLLM框架和Ollama环境本地运行deepseek,并可以通过用户自己的文档来针对性地回答用户问题,用户也可以上传文件来构建模型回复问题所需要的所有参考资料的知识库,使得模型相对于在线模型更加专业地解答用户的问题。同时本地部署保证了隐私性和针对性。
指针式表盘指针关键部位分割系统源码&数据集分享
多策略增强:MWOA鲸鱼优化算法与其他变体及2024年最新算法的实证比较与结果分析——新颖策略实施效果显著且复杂度无增加的研究,多策略改进的鲸鱼优化算法(MWOA),与其他三种变体和几种2024最新算法比较,策略都是很新颖的策略,可以直接写了发文章,并且没有增加复杂度上改进效果 ,MWOA; 变体算法; 最新算法; 策略新颖; 复杂度未增加; 改进效果显著,"多策略改进MWOA算法:与多种变体及2024新算法比较展示优越性"
织物缺陷检测系统源码分享[一条龙教学YOLOV8标注好的数据集一键训练_70+全套改进创新点发刊_Web前端展示]