| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- package suppliercertappend
- import (
- "time"
- )
- type OilSupplierCertAppend struct {
- Id int `xorm:"not null pk autoincr INT(10)"`
- SupplierId int `xorm:"not null comment('供方基本信息表主键') INT(10)"`
- SupplierName string `xorm:"comment('供方名称') VARCHAR(200)"`
- SupplierCertId int `xorm:"not null comment('供方准入证书信息表主键') INT(10)"`
- ApplyDate time.Time `xorm:"comment('申请日期') DATETIME"`
- RecUnitFlag string `xorm:"comment('推荐单位的级联Id标记') VARCHAR(200)"`
- RecUnitId string `xorm:"comment('推荐单位编码') VARCHAR(50)"`
- RecUnitName string `xorm:"comment('推荐单位名称') VARCHAR(200)"`
- AppendType string `xorm:"comment('增项类别(1 物资类,2 基建类,3 技术服务类)') VARCHAR(10)"`
- InStyle string `xorm:"default '1' comment('准入方式') VARCHAR(10)"`
- DenyReason string `xorm:"comment('退回原因') VARCHAR(50)"`
- AuditDate time.Time `xorm:"comment('审核日期') DATETIME"`
- Status string `xorm:"comment('状态标识') VARCHAR(50)"`
- WorkFlowId string `xorm:"default '0' comment('工作流的ID') VARCHAR(255)"`
- AuditIndex int `xorm:"default 0 comment('审批次数') INT(11)"`
- BusinessKey string `xorm:"VARCHAR(255)"`
- ProcessKey string `xorm:"VARCHAR(255)"`
- Remark string `xorm:"comment('备注') VARCHAR(500)"`
- IsDelete int `xorm:"default 0 comment('删除状态,0正常,1已删除') INT(10)"`
- Step int `xorm:"comment('页面上第几步') INT(10)"`
- FirstAudit int `xorm:"default 0 comment('初审') INT(10)"`
- SecondAudit int `xorm:"default 0 comment('复审') INT(10)"`
- ThirdAudit int `xorm:"default 0 comment('专业科室审批') INT(10)"`
- FourthAudit int `xorm:"default 0 comment('集中审批') INT(10)"`
- CreateOn time.Time `xorm:"DATETIME"`
- CreateUserId int `xorm:"INT(10)"`
- CreateBy string `xorm:"VARCHAR(50)"`
- ModifiedOn time.Time `xorm:"DATETIME"`
- ModifiedUserId int `xorm:"INT(10)"`
- ModifiedBy string `xorm:"VARCHAR(50)"`
- OldId int `xorm:"INT(10)"`
- }
- type OilSupplierCertAppendTodo struct {
- Id int `xorm:"not null pk autoincr INT(10)"`
- SupplierName string `xorm:"VARCHAR(100)"`
- SupplierId int `xorm:"not null comment('供方基本信息表主键') INT(10)"`
- SupplierCertId int `xorm:"not null comment('供方准入证书信息表主键') INT(10)"`
- ApplyDate time.Time `xorm:"comment('申请日期') DATETIME"`
- RecUnitFlag string `xorm:"comment('推荐单位的级联Id标记') VARCHAR(200)"`
- RecUnitId string `xorm:"comment('推荐单位编码') VARCHAR(50)"`
- RecUnitName string `xorm:"comment('推荐单位名称') VARCHAR(50)"`
- AppendType string `xorm:"comment('增项类别(1 物资类,2 基建类,3 技术服务类)') VARCHAR(10)"`
- DenyReason string `xorm:"comment('退回原因') VARCHAR(50)"`
- AuditDate time.Time `xorm:"comment('审核日期') DATETIME"`
- Status string `xorm:"comment('状态标识') VARCHAR(50)"`
- WorkFlowId string `xorm:"default '0' comment('工作流的ID') VARCHAR(255)"`
- AuditIndex int `xorm:"default 0 comment('审批次数') INT(11)"`
- BusinessKey string `xorm:"VARCHAR(255)"`
- ProcessKey string `xorm:"VARCHAR(255)"`
- Remark string `xorm:"comment('备注') VARCHAR(500)"`
- IsDelete int `xorm:"default 0 comment('删除状态,0正常,1已删除') INT(10)"`
- Step int `xorm:"comment('页面上第几步') INT(10)"`
- FirstAudit int `xorm:"default 0 comment('初审') INT(10)"`
- SecondAudit int `xorm:"default 0 comment('复审') INT(10)"`
- ThirdAudit int `xorm:"default 0 comment('专业科室审批') INT(10)"`
- FourthAudit int `xorm:"default 0 comment('集中审批') INT(10)"`
- CreateOn time.Time `xorm:"DATETIME"`
- CreateUserId int `xorm:"INT(10)"`
- CreateBy string `xorm:"VARCHAR(50)"`
- ModifiedOn time.Time `xorm:"DATETIME"`
- ModifiedUserId int `xorm:"INT(10)"`
- ModifiedBy string `xorm:"VARCHAR(50)"`
- }
- type Supplier struct {
- SupplierId int
- SupplierCertId int
- SupplierName string
- }
- //11111
- type OilSupplierCert struct {
- Id int `xorm:"not null pk autoincr INT(10)"`
- SupplierId int `xorm:"not null comment('供方基本信息表主键') INT(10)"`
- AccessCardNo string `xorm:"comment('准入证号') VARCHAR(20)"`
- SupplierTypeCode string `xorm:"comment('准入类别代码(1 物资类,2 基建类,3 技术服务类)') VARCHAR(5)"`
- SupplierTypeName string `xorm:"comment('准入类别名称(1 物资类,2 基建类,3 技术服务类)') VARCHAR(50)"`
- RecUnitReason string `xorm:"comment('推荐单位的推荐意见') VARCHAR(800)"`
- RecUnitPerson string `xorm:"comment('推荐单位负责人') VARCHAR(20)"`
- RecDate time.Time `xorm:"comment('推荐日期') DATETIME"`
- RecUnitId string `xorm:"comment('推荐单位编码') VARCHAR(10)"`
- RecUnitName string `xorm:"comment('推荐单位名称') VARCHAR(50)"`
- Status string `xorm:"not null default '0' comment('状态标识(0未申请,1办理完毕)') VARCHAR(10)"`
- BackReason string `xorm:"comment('退回原因') VARCHAR(50)"`
- InFlag string `xorm:"default '0' comment('准入标识') VARCHAR(10)"`
- EffectStartTime time.Time `xorm:"comment('有效期起') DATETIME"`
- EffectEndTime time.Time `xorm:"comment('有效期止') DATETIME"`
- AuditProcessNote string `xorm:"comment('办理过程备注') VARCHAR(100)"`
- AuditDate time.Time `xorm:"comment('审核日期') DATETIME"`
- PayNotice string `xorm:"default '0' comment('交费通知') VARCHAR(2)"`
- SupplierStatus string `xorm:"comment('供应商状态(null:正常,1中止,2终止)') VARCHAR(255)"`
- MgrType string `xorm:"comment('供应商管理类型') VARCHAR(255)"`
- Type string `xorm:"comment('供应商类型') VARCHAR(255)"`
- MgrUnit string `xorm:"comment('管理单位') VARCHAR(255)"`
- AddinTime string `xorm:"comment('准入日期') VARCHAR(255)"`
- EffectTime string `xorm:"comment('生效日期') VARCHAR(255)"`
- ApplyTime string `xorm:"comment('年审到期日期') VARCHAR(255)"`
- SupplierNo string `xorm:"comment('供应商准入证编号') VARCHAR(255)"`
- MdmFlag string `xorm:"default '0' comment('MDM标志') VARCHAR(2)"`
- InternalFlag string `xorm:"comment('国内采购') VARCHAR(255)"`
- ImportFlag string `xorm:"comment('进口采购') VARCHAR(255)"`
- OutsideFlog string `xorm:"comment('境外项目') VARCHAR(255)"`
- Step int `xorm:"comment('页面上第几步') INT(10)"`
- Remark string `xorm:"comment('备注') VARCHAR(500)"`
- IsDelete int `xorm:"default 0 comment('删除状态,0正常,1已删除') INT(10)"`
- WorkerTotal int `xorm:"default 0 comment('企业员工总数') INT(10)"`
- ContractNum int `xorm:"default 0 comment('合同化用工数量') INT(10)"`
- UniversityNum int `xorm:"default 0 comment('大学及以上学历人员数量') INT(10)"`
- TechnicalNum int `xorm:"default 0 comment('技术、管理人员数量') INT(10)"`
- AboveProfNum int `xorm:"default 0 comment('高级及以上职称人员数量') INT(10)"`
- MiddleProfNum int `xorm:"default 0 comment('中级职称人员数量') INT(10)"`
- NationalRegNum int `xorm:"default 0 comment('具有国家注册执业资格人员数量') INT(10)"`
- NationalCertTotal int `xorm:"default 0 comment('具有国家注册执业资格证书总数') INT(10)"`
- DesignerTotal int `xorm:"default 0 comment('设计人员总数') INT(10)"`
- SkillerTotal int `xorm:"default 0 comment('技术工人总数') INT(10)"`
- WorkflowId string `xorm:"default '0' comment('工作流的ID') VARCHAR(255)"`
- CreateOn time.Time `xorm:"DATETIME"`
- CreateUserId int `xorm:"INT(10)"`
- CreateBy string `xorm:"VARCHAR(50)"`
- ModifiedOn time.Time `xorm:"DATETIME"`
- ModifiedUserId int `xorm:"INT(10)"`
- ModifiedBy string `xorm:"VARCHAR(50)"`
- }
|