do

package
v0.0.0-...-41f1090 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 4, 2023 License: MIT Imports: 2 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Config

type Config struct {
	g.Meta     `orm:"table:cqgf_config, do:true"`
	Id         interface{} //
	KeyName    interface{} // 配置名称
	KeyValue   interface{} // 对应key_name的设置值
	Remark     interface{} // 预留补充说明信息
	CreateTime *gtime.Time // 数据新增时间
	UpdateTime *gtime.Time // 最后一次更新数据时间
}

Config is the golang structure of table cqgf_config for DAO operations like Where/Data.

type CrewDutyIndex

type CrewDutyIndex struct {
	g.Meta     `orm:"table:cqgf_crew_duty_index, do:true"`
	Id         interface{} //
	ScoreIndex interface{} // 职责指数
	JobLevelId interface{} // 职级ID
	Arith      interface{} // 运算方式
	Remark     interface{} // 预留备注说明信息
	CreateTime *gtime.Time // 新增数据时间
	UpdateTime *gtime.Time // 最后一次更新数据时间
}

CrewDutyIndex is the golang structure of table cqgf_crew_duty_index for DAO operations like Where/Data.

type CrewHoursIndex

type CrewHoursIndex struct {
	g.Meta     `orm:"table:cqgf_crew_hours_index, do:true"`
	Id         interface{} //
	ScoreIndex interface{} // 工时指数
	ScoreMin   interface{} // 得分下限
	ScoreMax   interface{} // 得分上线
	ScoreRange interface{} // 得分区间包含关系(1:左闭右开,2:左开右闭)
	Remark     interface{} // 预留备注说明信息
	CreateTime *gtime.Time // 新增数据时间
	UpdateTime *gtime.Time // 最后一次更新数据时间
}

CrewHoursIndex is the golang structure of table cqgf_crew_hours_index for DAO operations like Where/Data.

type CrewKpiRule

type CrewKpiRule struct {
	g.Meta     `orm:"table:cqgf_crew_kpi_rule, do:true"`
	Id         interface{} //
	Redio      interface{} // 比例
	ScoreMin   interface{} // 得分下限
	ScoreMax   interface{} // 得分上线
	ScoreRange interface{} // 得分区间包含关系(1:左闭右开,2:左开右闭)
	LevelName  interface{} // 等级名称
	Remark     interface{} // 预留备注说明信息
	CreateTime *gtime.Time // 新增数据时间
	UpdateTime *gtime.Time // 最后一次更新数据时间
}

CrewKpiRule is the golang structure of table cqgf_crew_kpi_rule for DAO operations like Where/Data.

type CrewManageIndex

type CrewManageIndex struct {
	g.Meta        `orm:"table:cqgf_crew_manage_index, do:true"`
	Id            interface{} //
	ScoreIndex    interface{} // 管理指数
	ProductRoleId interface{} // 项目角色ID
	Remark        interface{} // 预留备注说明信息
	CreateTime    *gtime.Time // 新增数据时间
	UpdateTime    *gtime.Time // 最后一次更新数据时间
}

CrewManageIndex is the golang structure of table cqgf_crew_manage_index for DAO operations like Where/Data.

type CrewOvertimeRule

type CrewOvertimeRule struct {
	g.Meta     `orm:"table:cqgf_crew_overtime_rule, do:true"`
	Id         interface{} //
	Redio      interface{} // 浮动比例
	ScoreMin   interface{} // 得分下限
	ScoreMax   interface{} // 得分上线
	ScoreRange interface{} // 得分区间包含关系(1:左闭右开,2:左开右闭)
	Remark     interface{} // 预留备注说明信息
	CreateTime *gtime.Time // 新增数据时间
	UpdateTime *gtime.Time // 最后一次更新数据时间
}

CrewOvertimeRule is the golang structure of table cqgf_crew_overtime_rule for DAO operations like Where/Data.

type CrewSolveRule

type CrewSolveRule struct {
	g.Meta     `orm:"table:cqgf_crew_solve_rule, do:true"`
	Id         interface{} //
	Redio      interface{} // 浮动比例
	Demand     interface{} // 贡献标准(1:有突出贡献,2:有重要贡献,3:较低/无贡献)
	Remark     interface{} // 预留备注说明信息
	CreateTime *gtime.Time // 新增数据时间
	UpdateTime *gtime.Time // 最后一次更新数据时间
}

CrewSolveRule is the golang structure of table cqgf_crew_solve_rule for DAO operations like Where/Data.

type Department

type Department struct {
	g.Meta           `orm:"table:cqgf_department, do:true"`
	Id               interface{} //
	Name             interface{} // 部门名称
	NameEn           interface{} // 部门英文名称
	Pid              interface{} // 上级部门
	DepartmentLeader interface{} // 部门负责人的UserID
	Level            interface{} // 部门层级
	Remark           interface{} // 预留备注信息
	CreateTime       *gtime.Time // 数据新增时间
	UpdateTime       *gtime.Time // 最后一次更新数据时间
}

Department is the golang structure of table cqgf_department for DAO operations like Where/Data.

type Employee

type Employee struct {
	g.Meta         `orm:"table:cqgf_employee, do:true"`
	Id             interface{} //
	UserName       interface{} // 员工姓名
	WorkNumber     interface{} // 员工工号
	Sex            interface{} // 性别(0:未知 1:男  2:女)
	Phone          interface{} // 手机号码
	Email          interface{} // 邮箱号码
	DepartId       interface{} // 所属部门
	JobLevel       interface{} // 职级
	JobId          interface{} // 岗位信息
	DirectLeader   interface{} // 直接上级
	IsLeaderInDept interface{} // 表示在所在的部门内是否为部门负责人。2-否;1-是
	InstructorId   interface{} // 指导老师
	Status         interface{} // 在职状态(1:在职 2:试用期 3:实习期 4:已离职)
	Remark         interface{} // 预留备注信息
	CreateTime     *gtime.Time // 新增数据时间
	UpdateTime     *gtime.Time // 最后一次更新数据时间
}

Employee is the golang structure of table cqgf_employee for DAO operations like Where/Data.

type EmployeeJob

type EmployeeJob struct {
	g.Meta     `orm:"table:cqgf_employee_job, do:true"`
	Id         interface{} //
	EmployeeId interface{} // 员工信息
	JobId      interface{} // 岗位信息
	DepartId   interface{} // 所属部门
	Remark     interface{} // 预留备注信息
	CreateTime *gtime.Time // 数据新增时间
	UpdateTime *gtime.Time // 最后一次更新数据时间
}

EmployeeJob is the golang structure of table cqgf_employee_job for DAO operations like Where/Data.

type Job

type Job struct {
	g.Meta     `orm:"table:cqgf_job, do:true"`
	Id         interface{} //
	Name       interface{} // 岗位名称
	DepartId   interface{} // 所属部门
	Remark     interface{} // 预留备注信息
	CreateTime *gtime.Time // 数据新增时间
	UpdateTime *gtime.Time // 最后一次更新数据时间
}

Job is the golang structure of table cqgf_job for DAO operations like Where/Data.

type JobLevel

type JobLevel struct {
	g.Meta     `orm:"table:cqgf_job_level, do:true"`
	Id         interface{} //
	Name       interface{} // 职级名称
	Remark     interface{} // 预留备注信息
	CreateTime *gtime.Time // 数据新增时间
	UpdateTime *gtime.Time // 最后一次更新数据时间
}

JobLevel is the golang structure of table cqgf_job_level for DAO operations like Where/Data.

type PmDutyIndex

type PmDutyIndex struct {
	g.Meta     `orm:"table:cqgf_pm_duty_index, do:true"`
	Id         interface{} //
	ScoreIndex interface{} // 职责指数
	JobLevelId interface{} // 职级ID
	Arith      interface{} // 运算方式
	Remark     interface{} // 预留备注说明信息
	CreateTime *gtime.Time // 新增数据时间
	UpdateTime *gtime.Time // 最后一次更新数据时间
}

PmDutyIndex is the golang structure of table cqgf_pm_duty_index for DAO operations like Where/Data.

type PmHoursIndex

type PmHoursIndex struct {
	g.Meta     `orm:"table:cqgf_pm_hours_index, do:true"`
	Id         interface{} //
	ScoreIndex interface{} // 工时指数
	ScoreMin   interface{} // 得分下限
	ScoreMax   interface{} // 得分上线
	ScoreRange interface{} // 得分区间包含关系(1:左闭右开,2:左开右闭)
	Remark     interface{} // 预留备注说明信息
	CreateTime *gtime.Time // 新增数据时间
	UpdateTime *gtime.Time // 最后一次更新数据时间
}

PmHoursIndex is the golang structure of table cqgf_pm_hours_index for DAO operations like Where/Data.

type PmKpiRule

type PmKpiRule struct {
	g.Meta     `orm:"table:cqgf_pm_kpi_rule, do:true"`
	Id         interface{} //
	Redio      interface{} // 比例
	LevelName  interface{} // 等级名称
	Remark     interface{} // 预留备注说明信息
	CreateTime *gtime.Time // 新增数据时间
	UpdateTime *gtime.Time // 最后一次更新数据时间
}

PmKpiRule is the golang structure of table cqgf_pm_kpi_rule for DAO operations like Where/Data.

type PmManageIndex

type PmManageIndex struct {
	g.Meta        `orm:"table:cqgf_pm_manage_index, do:true"`
	Id            interface{} //
	ScoreIndex    interface{} // 管理指数
	ProductRoleId interface{} // 项目角色ID
	Remark        interface{} // 预留备注说明信息
	CreateTime    *gtime.Time // 新增数据时间
	UpdateTime    *gtime.Time // 最后一次更新数据时间
}

PmManageIndex is the golang structure of table cqgf_pm_manage_index for DAO operations like Where/Data.

type PmOvertimeRule

type PmOvertimeRule struct {
	g.Meta     `orm:"table:cqgf_pm_overtime_rule, do:true"`
	Id         interface{} //
	Redio      interface{} // 浮动比例
	ScoreMin   interface{} // 得分下限
	ScoreMax   interface{} // 得分上线
	ScoreRange interface{} // 得分区间包含关系(1:左闭右开,2:左开右闭)
	Remark     interface{} // 预留备注说明信息
	CreateTime *gtime.Time // 新增数据时间
	UpdateTime *gtime.Time // 最后一次更新数据时间
}

PmOvertimeRule is the golang structure of table cqgf_pm_overtime_rule for DAO operations like Where/Data.

type PmSolveRule

type PmSolveRule struct {
	g.Meta     `orm:"table:cqgf_pm_solve_rule, do:true"`
	Id         interface{} //
	Redio      interface{} // 浮动比例
	Demand     interface{} // 贡献标准(1:有突出贡献,2:有重要贡献,3:较低/无贡献)
	Remark     interface{} // 预留备注说明信息
	CreateTime *gtime.Time // 新增数据时间
	UpdateTime *gtime.Time // 最后一次更新数据时间
}

PmSolveRule is the golang structure of table cqgf_pm_solve_rule for DAO operations like Where/Data.

type Product

type Product struct {
	g.Meta          `orm:"table:cqgf_product, do:true"`
	Id              interface{} //
	Tid             interface{} // 项目类型(type关联表)
	Name            interface{} // 项目名称
	ProNumber       interface{} // 项目编号
	SubName         interface{} // 项目简称
	LcScore         interface{} // 优先级评分
	LccId           interface{} // 项目优先级ID
	LccName         interface{} // 项目优先级
	Invest          interface{} // 投资额度
	NetProfit       interface{} // 首年净利润
	ModeId          interface{} // 研发模式ID(product_mode)
	PmId            interface{} // PM(员工信息表ID)
	Attribute       interface{} // PM属性(1:全职,2:兼职)
	PmlId           interface{} // 项目责任人ID(员工信息表ID)
	IncentiveBudget interface{} // 项目激励预算
	FixBudget       interface{} //
	FixType         interface{} // 修正预算计算类型(1:增加,2减少)
	Status          interface{} // 项目当前状态(1:未开始 2:未立项,3:进行中 4:暂停 5:已取消 6:延迟 7:异常 8:已完成未验收 9:客户已验收 10:结项)
	ProTypeStageId  interface{} // 项目当前所处阶段
	Remark          interface{} // 预留备注说明信息
	CreateTime      *gtime.Time // 新增数据时间
	UpdateTime      *gtime.Time // 最后一次更新数据时间
}

Product is the golang structure of table cqgf_product for DAO operations like Where/Data.

type ProductBudgetAccess

type ProductBudgetAccess struct {
	g.Meta      `orm:"table:cqgf_product_budget_access, do:true"`
	Id          interface{} //
	ScoreMin    interface{} // 分值下限
	ScoreMax    interface{} // 分值上限
	ScoreRange  interface{} // 分数区间包含关系(1:左闭右开,2:左开右闭)
	BudgetMin   interface{} // 预算额度下限
	BudgetMax   interface{} // 预算额度上线
	BudgetRange interface{} // 额度区间包含关系(1:左闭右开,2:左开右闭)
	Remark      interface{} // 预留备注说明信息
	CreateTime  *gtime.Time // 新增数据时间
	UpdateTime  *gtime.Time // 最后一次更新数据时间
}

ProductBudgetAccess is the golang structure of table cqgf_product_budget_access for DAO operations like Where/Data.

type ProductLevelAssess

type ProductLevelAssess struct {
	g.Meta             `orm:"table:cqgf_product_level_assess, do:true"`
	Id                 interface{} //
	EvaluateDimensions interface{} // 评价维度
	EvaluateCriteria   interface{} // 评价标准
	ScoreCriteria      interface{} // 评分标准
	EvaluateId         interface{} // 上级评价维度
	Weight             interface{} // 权重
	Remark             interface{} // 预留备注说明信息
	CreateTime         *gtime.Time // 新增数据时间
	UpdateTime         *gtime.Time // 最新更新数据
}

ProductLevelAssess is the golang structure of table cqgf_product_level_assess for DAO operations like Where/Data.

type ProductLevelConfirm

type ProductLevelConfirm struct {
	g.Meta        `orm:"table:cqgf_product_level_confirm, do:true"`
	Id            interface{} //
	Name          interface{} // 项目优先级
	ScoreMin      interface{} // 得分下限
	ScoreMax      interface{} // 得分上线
	ScoreRange    interface{} // 得分区间包含关系(1:左闭右开,2:左开右闭)
	IsNeedPm      interface{} // 是否委派PM(1:是 2:否)
	PmDemand      interface{} // pm要求
	ProductDemand interface{} // 项目工作相关要求
	MonitDemand   interface{} // 监控要求
	IsNeedPml     interface{} // 是否需要项目负责人(1:是 2:否)
	Remark        interface{} // 预留备注说明信息
	CreateTime    *gtime.Time // 新增数据时间
	UpdateTime    *gtime.Time // 最新更新数据
}

ProductLevelConfirm is the golang structure of table cqgf_product_level_confirm for DAO operations like Where/Data.

type ProductMember

type ProductMember struct {
	g.Meta       `orm:"table:cqgf_product_member, do:true"`
	Id           interface{} //
	ProId        interface{} // 项目ID
	EmpId        interface{} // 项目成员ID
	IsSpecial    interface{} // 1: 需要特殊处理 2:不需要特殊处理
	WorkNumber   interface{} // 员工工号
	Attribute    interface{} // 属性(1:全职,2:兼职)
	PrId         interface{} // 项目角色ID
	PrName       interface{} // 项目角色名称
	ManageIndex  interface{} // 管理指数
	JbId         interface{} // 职级ID
	JbName       interface{} // 职级名称
	DutyIndex    interface{} // 责任指数
	WorkAddress  interface{} // 工作地点
	SpecificDuty interface{} // 具体职责和职务
	Type         interface{} // 项目组内部分类使用
	PutInto      interface{} // 投入占比
	IsGuide      interface{} // 是否是主导方(1:是)
	IsSupport    interface{} // 是否是支持方(1:是)
	Remark       interface{} // 预留备注说明信息
	CreateTime   *gtime.Time // 新增数据时间
	UpdateTime   *gtime.Time // 最后一次更新数据时间
}

ProductMember is the golang structure of table cqgf_product_member for DAO operations like Where/Data.

type ProductMemberKey

type ProductMemberKey struct {
	g.Meta     `orm:"table:cqgf_product_member_key, do:true"`
	Id         interface{} //
	StageKpiId interface{} // 项目绩效ID
	ProId      interface{} // 项目ID
	ProEmpId   interface{} // 小组成员ID
	ProStageId interface{} // 项目-阶段ID
	WorkNumber interface{} // 成员工号
	Username   interface{} // 成员姓名
	KeyName    interface{} // 关键事件名称
	HappenTime *gtime.Time // 发生时间
	Type       interface{} // 主体分类(1:加班贡献 2:解决问题贡献 3:其他事件贡献)
	Property   interface{} // 事件性质(1:正向激励 2:有待提高)
	Result     interface{} // 当前关键事件的处理结果
	Remark     interface{} // 预留备注说明信息
	CreateTime *gtime.Time // 新增数据时间
	UpdateTime *gtime.Time // 最后一次更新数据时间
}

ProductMemberKey is the golang structure of table cqgf_product_member_key for DAO operations like Where/Data.

type ProductMemberKpi

type ProductMemberKpi struct {
	g.Meta        `orm:"table:cqgf_product_member_kpi, do:true"`
	Id            interface{} //
	IsPm          interface{} // 是否是PM(1:是 2:否)
	ProId         interface{} // 项目ID
	ProEmpId      interface{} // 小组成员ID
	ProStageId    interface{} // 项目-阶段ID
	OvertimeRadio interface{} // 工时占比
	PrId          interface{} // 项目角色ID
	PrName        interface{} // 项目角色名称
	JbId          interface{} // 职级ID
	JbName        interface{} // 职级名称
	FloatRaio     interface{} // 浮动贡献
	KpiLevelId    interface{} // 绩效等级ID(区分是PM还是成员)
	KpiLevelScore interface{} // 绩效得分
	KpiLevel      interface{} // 绩效等级
	KpiRadio      interface{} // 绩效比例
	Remark        interface{} // 预留备注说明信息
	CreateTime    *gtime.Time // 新增数据时间
	UpdateTime    *gtime.Time // 最后一次更新数据时间
}

ProductMemberKpi is the golang structure of table cqgf_product_member_kpi for DAO operations like Where/Data.

type ProductMemberPrize

type ProductMemberPrize struct {
	g.Meta          `orm:"table:cqgf_product_member_prize, do:true"`
	Id              interface{} //
	ProId           interface{} // 项目ID
	IsPm            interface{} // 是否是PM(1:是 2:否)
	ProEmpId        interface{} // 小组成员ID
	ProStageId      interface{} // 项目-阶段ID
	OvertimeRadio   interface{} // 工时占比
	OvertimeIndex   interface{} // 工时指数
	PrId            interface{} // 项目角色ID
	PrName          interface{} // 项目角色名称
	ManageIndex     interface{} // 管理指数
	JbId            interface{} // 职级ID
	JbName          interface{} // 职级名称
	DutyIndex       interface{} // 责任指数
	BaseIndex       interface{} // 基准指数
	WeightAutoRadio interface{} // 权重基准(自动)
	WeightPmoRadio  interface{} // 权重基准(PMO)
	SentBase        interface{} // 发放基数
	RemaindQueto    interface{} // 剩余额度
	FloatRaio       interface{} // 浮动贡献
	KpiLevelId      interface{} // 绩效等级ID(区分是PM还是成员)
	KpiLevel        interface{} // 绩效等级
	KpiRadio        interface{} // 绩效比例
	SentQueto       interface{} // 实发额度
	Remark          interface{} // 预留备注说明信息
	CreateTime      *gtime.Time // 新增数据时间
	UpdateTime      *gtime.Time // 最后一次更新数据时间
}

ProductMemberPrize is the golang structure of table cqgf_product_member_prize for DAO operations like Where/Data.

type ProductMode

type ProductMode struct {
	g.Meta     `orm:"table:cqgf_product_mode, do:true"`
	Id         interface{} //
	Name       interface{} // 开发模型名称
	Factor     interface{} // 开发系数
	Remark     interface{} // 预留备注说明信息
	CreateTime *gtime.Time // 新增数据时间
	UpdateTime *gtime.Time // 最后一次更新数据时间
}

ProductMode is the golang structure of table cqgf_product_mode for DAO operations like Where/Data.

type ProductModeStage

type ProductModeStage struct {
	g.Meta     `orm:"table:cqgf_product_mode_stage, do:true"`
	Id         interface{} //
	Tid        interface{} // 项目开发模式ID
	Name       interface{} // 项目阶段名称
	QuotaRadio interface{} // 阶段额度占比
	Remark     interface{} // 预留备注说明信息
	CreateTime *gtime.Time // 新增数据时间
	UpdateTime *gtime.Time // 最后一次更新数据时间
}

ProductModeStage is the golang structure of table cqgf_product_mode_stage for DAO operations like Where/Data.

type ProductRoles

type ProductRoles struct {
	g.Meta     `orm:"table:cqgf_product_roles, do:true"`
	Id         interface{} //
	Name       interface{} //
	Pid        interface{} // 上级角色
	Explain    interface{} // 角色与职责说明
	IsSpecial  interface{} // 1: 需要特殊处理 2:不需要特殊处理
	Remark     interface{} // 预留备注信息
	CreateTime *gtime.Time // 新增数据时间
	UpdateTime *gtime.Time // 最后一次更新数据时间
}

ProductRoles is the golang structure of table cqgf_product_roles for DAO operations like Where/Data.

type ProductStageKpi

type ProductStageKpi struct {
	g.Meta           `orm:"table:cqgf_product_stage_kpi, do:true"`
	Id               interface{} //
	ProId            interface{} // 项目主表ID
	StageId          interface{} // 项目所处阶段(cqgf_product_stage_rule.id)
	StageRadio       interface{} // 阶段比例
	StageBudget      interface{} // 阶段预算
	StageScore       interface{} // 阶段得分
	ShouldSentRadio  interface{} // 应发比例
	StageQuota       interface{} // 阶段额度
	CrewQuota        interface{} // 团队额度
	TeamBuildQuota   interface{} // 团建额度
	SupportQuota     interface{} // 业务支持额度
	PmRadio          interface{} // PM分配比例
	PmBase           interface{} // PM发放基础
	PmFloatRadio     interface{} // PM浮动比例
	PmKpiLevelId     interface{} // PM绩效等级
	PmKpiLevelScore  interface{} // PM绩效得分
	PmKpiLevelName   interface{} // PM绩效等级名称
	PmKpiLevelRadio  interface{} // PM绩效等级比例
	PmIncentiveQuota interface{} // PM实际应发额度
	Remark           interface{} // 预留备注信息
	CreateTime       *gtime.Time // 新增数据时间
	UpdateTime       *gtime.Time // 最后一次更新数据时间
}

ProductStageKpi is the golang structure of table cqgf_product_stage_kpi for DAO operations like Where/Data.

type ProductStageRadio

type ProductStageRadio struct {
	g.Meta     `orm:"table:cqgf_product_stage_radio, do:true"`
	Id         interface{} //
	Sid        interface{} // 阶段ID
	ScoreMin   interface{} // 得分下限
	ScoreMax   interface{} // 得分上线
	ScoreRange interface{} // 得分区间包含关系(1:左闭右开,2:左开右闭)
	QuotaRadio interface{} // 激励额度占比
	Remark     interface{} // 预留备注信息
	CreateTime *gtime.Time // 新增数据时间
	UpdateTime *gtime.Time // 最后一次更新数据时间
}

ProductStageRadio is the golang structure of table cqgf_product_stage_radio for DAO operations like Where/Data.

type ProductStageRule

type ProductStageRule struct {
	g.Meta     `orm:"table:cqgf_product_stage_rule, do:true"`
	Id         interface{} //
	Name       interface{} // 阶段名称
	ProId      interface{} // 项目ID
	ProStageId interface{} // 项目-阶段ID
	QuotaRadio interface{} // 阶段额度占比
	Remark     interface{} // 预留备注信息
	CreateTime *gtime.Time // 新增数据时间
	UpdateTime *gtime.Time // 最后一次更新数据时间
}

ProductStageRule is the golang structure of table cqgf_product_stage_rule for DAO operations like Where/Data.

type ProductTask

type ProductTask struct {
	g.Meta              `orm:"table:cqgf_product_task, do:true"`
	Id                  interface{} //
	ProductId           interface{} // 项目唯一标志
	TaskName            interface{} // 任务名称
	TaskCate            interface{} // 任务分类
	TaskDesc            interface{} // 任务描述
	TaskStatus          interface{} // 任务状态(1:未开启,2:运行中,3:已完成 4:暂停)
	Level               interface{} // 优先级(值越大,优先级越高)
	IsSendGroupChat     interface{} // 1: 发送至群 2:不发送至群
	GroupChat           interface{} // 发送至群信息
	RemindGroupChatUser interface{} // 发送到群时,提醒相关关注人
	DutyEmployeeId      interface{} // 责任人员工信息
	DutyWorkNumber      interface{} // 责任人员工工号
	JoinWorkNumber      interface{} // 关联责任人
	PalnStartTime       *gtime.Time // 计划开始时间
	PalnEndTime         *gtime.Time // 计划结束时间
	RealStartTime       *gtime.Time // 实际开始时间
	RealEndTime         *gtime.Time // 实际结束时间
	UpgradeFirst        interface{} // 第一次升级@工号
	UpgradeFirstTime    *gtime.Time // 第一次升级时间
	UpgradeTwo          interface{} // 第二次升级@工号
	UpgradeTwoTime      *gtime.Time // 第三次升级@工号
	UpgradeThree        interface{} // 第三次升级@工号
	UpgradeThreeTime    *gtime.Time // 第三次升级时间
	AssignEmployeeId    interface{} // 指派人员工信息
	AssignWorkNumber    interface{} // 指派人员工工号
	Remark              interface{} // 预留备注说明信息
	CreateTime          *gtime.Time // 新增数据时间
	UpdateTime          *gtime.Time // 最后一次更新数据时间
}

ProductTask is the golang structure of table cqgf_product_task for DAO operations like Where/Data.

type ProductTaskDevelop

type ProductTaskDevelop struct {
	g.Meta              `orm:"table:cqgf_product_task_develop, do:true"`
	Id                  interface{} //
	ProductId           interface{} // 项目唯一标志
	TaskName            interface{} // 任务名称
	TaskCate            interface{} // 任务分类
	TaskDesc            interface{} // 任务描述
	TaskStatus          interface{} // 任务状态(1:未开启,2:运行中,3:已完成 4:暂停)
	Level               interface{} // 优先级(值越大,优先级越高)
	IsSendGroupChat     interface{} // 1: 发送至群 2:不发送至群
	GroupChat           interface{} // 发送至群信息
	RemindGroupChatUser interface{} // 发送到群时,提醒相关关注人
	DutyEmployeeId      interface{} // 责任人员工信息
	DutyWorkNumber      interface{} // 责任人员工工号
	JoinWorkNumber      interface{} // 关联责任人
	PalnStartTime       *gtime.Time // 计划开始时间
	PalnEndTime         *gtime.Time // 计划结束时间
	RealStartTime       *gtime.Time // 实际开始时间
	RealEndTime         *gtime.Time // 实际结束时间
	UpgradeFirst        interface{} // 第一次升级@工号
	UpgradeFirstTime    *gtime.Time // 第一次升级时间
	UpgradeTwo          interface{} // 第二次升级@工号
	UpgradeTwoTime      *gtime.Time // 第三次升级@工号
	UpgradeThree        interface{} // 第三次升级@工号
	UpgradeThreeTime    *gtime.Time // 第三次升级时间
	AssignEmployeeId    interface{} // 指派人员工信息
	AssignWorkNumber    interface{} // 指派人员工工号
	Remark              interface{} // 预留备注说明信息
	CreateTime          *gtime.Time // 新增数据时间
	UpdateTime          *gtime.Time // 最后一次更新数据时间
}

ProductTaskDevelop is the golang structure of table cqgf_product_task_develop for DAO operations like Where/Data.

type ProductTaskNpi

type ProductTaskNpi struct {
	g.Meta              `orm:"table:cqgf_product_task_npi, do:true"`
	Id                  interface{} //
	ProductId           interface{} // 项目唯一标志
	TaskName            interface{} // 任务名称
	TaskCate            interface{} // 任务分类
	TaskDesc            interface{} // 任务描述
	TaskStatus          interface{} // 任务状态(1:未开启,2:运行中,3:已完成 4:暂停)
	Level               interface{} // 优先级(值越大,优先级越高)
	IsSendGroupChat     interface{} // 1: 发送至群 2:不发送至群
	GroupChat           interface{} // 发送至群信息
	RemindGroupChatUser interface{} // 发送到群时,提醒相关关注人
	DutyEmployeeId      interface{} // 责任人员工信息
	DutyWorkNumber      interface{} // 责任人员工工号
	JoinWorkNumber      interface{} // 关联责任人
	PalnStartTime       *gtime.Time // 计划开始时间
	PalnEndTime         *gtime.Time // 计划结束时间
	RealStartTime       *gtime.Time // 实际开始时间
	RealEndTime         *gtime.Time // 实际结束时间
	UpgradeFirst        interface{} // 第一次升级@工号
	UpgradeFirstTime    *gtime.Time // 第一次升级时间
	UpgradeTwo          interface{} // 第二次升级@工号
	UpgradeTwoTime      *gtime.Time // 第三次升级@工号
	UpgradeThree        interface{} // 第三次升级@工号
	UpgradeThreeTime    *gtime.Time // 第三次升级时间
	AssignEmployeeId    interface{} // 指派人员工信息
	AssignWorkNumber    interface{} // 指派人员工工号
	Remark              interface{} // 预留备注说明信息
	CreateTime          *gtime.Time // 新增数据时间
	UpdateTime          *gtime.Time // 最后一次更新数据时间
}

ProductTaskNpi is the golang structure of table cqgf_product_task_npi for DAO operations like Where/Data.

type ProductTaskProduce

type ProductTaskProduce struct {
	g.Meta              `orm:"table:cqgf_product_task_produce, do:true"`
	Id                  interface{} //
	ProductId           interface{} // 项目唯一标志
	TaskName            interface{} // 任务名称
	TaskCate            interface{} // 任务分类
	TaskDesc            interface{} // 任务描述
	TaskStatus          interface{} // 任务状态(1:未开启,2:运行中,3:已完成 4:暂停)
	Level               interface{} // 优先级(值越大,优先级越高)
	IsSendGroupChat     interface{} // 1: 发送至群 2:不发送至群
	GroupChat           interface{} // 发送至群信息
	RemindGroupChatUser interface{} // 发送到群时,提醒相关关注人
	DutyEmployeeId      interface{} // 责任人员工信息
	DutyWorkNumber      interface{} // 责任人员工工号
	JoinWorkNumber      interface{} // 关联责任人
	PalnStartTime       *gtime.Time // 计划开始时间
	PalnEndTime         *gtime.Time // 计划结束时间
	RealStartTime       *gtime.Time // 实际开始时间
	RealEndTime         *gtime.Time // 实际结束时间
	UpgradeFirst        interface{} // 第一次升级@工号
	UpgradeFirstTime    *gtime.Time // 第一次升级时间
	UpgradeTwo          interface{} // 第二次升级@工号
	UpgradeTwoTime      *gtime.Time // 第三次升级@工号
	UpgradeThree        interface{} // 第三次升级@工号
	UpgradeThreeTime    *gtime.Time // 第三次升级时间
	AssignEmployeeId    interface{} // 指派人员工信息
	AssignWorkNumber    interface{} // 指派人员工工号
	Remark              interface{} // 预留备注说明信息
	CreateTime          *gtime.Time // 新增数据时间
	UpdateTime          *gtime.Time // 最后一次更新数据时间
}

ProductTaskProduce is the golang structure of table cqgf_product_task_produce for DAO operations like Where/Data.

type ProductTaskQuality

type ProductTaskQuality struct {
	g.Meta              `orm:"table:cqgf_product_task_quality, do:true"`
	Id                  interface{} //
	ProductId           interface{} // 项目唯一标志
	TaskName            interface{} // 任务名称
	TaskCate            interface{} // 任务分类
	TaskDesc            interface{} // 任务描述
	TaskStatus          interface{} // 任务状态(1:未开启,2:运行中,3:已完成 4:暂停)
	Level               interface{} // 优先级(值越大,优先级越高)
	IsSendGroupChat     interface{} // 1: 发送至群 2:不发送至群
	GroupChat           interface{} // 发送至群信息
	RemindGroupChatUser interface{} // 发送到群时,提醒相关关注人
	DutyEmployeeId      interface{} // 责任人员工信息
	DutyWorkNumber      interface{} // 责任人员工工号
	JoinWorkNumber      interface{} // 关联责任人
	PalnStartTime       *gtime.Time // 计划开始时间
	PalnEndTime         *gtime.Time // 计划结束时间
	RealStartTime       *gtime.Time // 实际开始时间
	RealEndTime         *gtime.Time // 实际结束时间
	UpgradeFirst        interface{} // 第一次升级@工号
	UpgradeFirstTime    *gtime.Time // 第一次升级时间
	UpgradeTwo          interface{} // 第二次升级@工号
	UpgradeTwoTime      *gtime.Time // 第三次升级@工号
	UpgradeThree        interface{} // 第三次升级@工号
	UpgradeThreeTime    *gtime.Time // 第三次升级时间
	AssignEmployeeId    interface{} // 指派人员工信息
	AssignWorkNumber    interface{} // 指派人员工工号
	Remark              interface{} // 预留备注说明信息
	CreateTime          *gtime.Time // 新增数据时间
	UpdateTime          *gtime.Time // 最后一次更新数据时间
}

ProductTaskQuality is the golang structure of table cqgf_product_task_quality for DAO operations like Where/Data.

type ProductType

type ProductType struct {
	g.Meta     `orm:"table:cqgf_product_type, do:true"`
	Id         interface{} //
	Name       interface{} // 开发模型名称
	Remark     interface{} // 预留备注说明信息
	CreateTime *gtime.Time // 新增数据时间
	UpdateTime *gtime.Time // 最后一次更新数据时间
}

ProductType is the golang structure of table cqgf_product_type for DAO operations like Where/Data.

type User

type User struct {
	g.Meta     `orm:"table:cqgf_user, do:true"`
	Id         interface{} //
	EmployeeId interface{} // 员工ID
	UserName   interface{} // 员工姓名
	WorkNumber interface{} // 员工工号
	Password   interface{} // 密码
	Sex        interface{} // 性别(0:未知 1:男  2:女)
	Phone      interface{} // 手机号码
	Email      interface{} // 邮箱号码
	Status     interface{} // 在职状态(1:在职 2:试用期 3:实习期 4:已离职)
	Remark     interface{} // 预留备注信息
	CreateTime *gtime.Time // 新增数据时间
	UpdateTime *gtime.Time // 最后一次更新数据时间
}

User is the golang structure of table cqgf_user for DAO operations like Where/Data.

type UserLog

type UserLog struct {
	g.Meta              `orm:"table:cqgf_user_log, do:true"`
	Id                  interface{} //
	MethodName          interface{} // 对应HTTP请求中Method参数值(1: GET 2: POST 3:PUT 4:DELETE)
	RequestUri          interface{} // http请求接口地址
	WorkNumber          interface{} // 唯一账号(员工工号)
	RequestModule       interface{} // 请求模块(一级模块)
	RequestSecondModule interface{} // 请求模块(二级模块)
	ChangeTypeName      interface{} // 操作对象全称
	RequestBody         interface{} // 具体请求参数
	Remark              interface{} // 预留补充说明信息
	CreateTime          *gtime.Time // 数据新增时间
	UpdateTime          *gtime.Time // 最后一次更新数据时间
}

UserLog is the golang structure of table cqgf_user_log for DAO operations like Where/Data.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL