This commit is contained in:
jingganjiaoyu 2024-08-30 21:56:19 +08:00
parent 23ec01591b
commit a190cf91bf
38 changed files with 66 additions and 1027 deletions

View File

@ -24,31 +24,23 @@ const (
)
type UserIssuer struct {
db.ModelWithUID
UserUID string `gorm:"type:char(32);index"`
db.ModelUserPlace
IssuerUID string `gorm:"type:char(32);index"`
Role uint8 `gorm:"default:0"`
}
type Issuer struct {
db.ModelWithUID
db.ModelPlace
CompanyUID string `gorm:"type:char(32);index"`
Name string `gorm:"type:varchar(64)"`
Type uint8 `gorm:"default:0"`
Link string `gorm:"type:varchar(255)"`
Init uint8
}
type Document struct {
db.ModelWithUID
db.ModelContent
IssuerUID string `gorm:"type:char(32);index"`
UserUID string `gorm:"type:char(32);index"`
School string `gorm:"type:varchar(32)"`
Subject string `gorm:"type:varchar(32)"`
Grade string `gorm:"type:varchar(32)"`
Type uint8 `gorm:"default:0"`
Icon string `gorm:"type:varchar(64)"`
Link string `gorm:"type:varchar(255)"`
Title string `gorm:"type:varchar(64)"`
Content string
}
func init() { db.CmdModels("", &UserIssuer{}, &Issuer{}, &Document{}) }

View File

@ -1,44 +1,8 @@
package jiaocaiziliao
import (
"shylinux.com/x/ice"
import "shylinux.com/x/ice"
"shylinux.com/x/education/src/jiaocaiziliao/model"
)
type userIssuer struct {
Table
issuer issuer
}
func (s userIssuer) User(m *ice.Message, arg ...string) {
s.FieldsWithCreatedAT(m, s, model.USER_UID, model.ROLE)
if len(arg) == 1 {
s.Select(m, model.ISSUER_UID, arg[0])
} else if len(arg) == 2 {
s.SelectDetail(m, model.ISSUER_UID, arg[0], model.UID, arg[1])
} else {
return
}
m.RenameAppend(model.ROLE, model.USER_ISSUER_ROLE)
s.SelectJoinUser(m)
}
func (s userIssuer) List(m *ice.Message, arg ...string) {
s.Tables(m, s.issuer).FieldsWithCreatedAT(m, s,
model.ISSUER_NAME, model.ISSUER_TYPE, model.USER_ISSUER_ROLE,
model.COMPANY_UID, model.ISSUER_UID,
model.INIT, model.LINK,
)
if len(arg) == 1 {
s.Select(m, model.USER_UID, arg[0])
} else if len(arg) == 2 {
s.SelectDetail(m, model.USER_UID, arg[0], s.Key(s, model.ISSUER_UID), arg[1])
} else {
return
}
s.SelectJoinCompany(m)
s.SelectJoinCity(m)
}
type userIssuer struct{ Table }
func init() { ice.TeamCtxCmd(userIssuer{}) }

View File

@ -21,30 +21,20 @@ const (
)
type UserClass struct {
db.ModelWithUID
UserUID string `gorm:"type:char(32);index"`
db.ModelUserPlace
ClassUID string `gorm:"type:char(32);index"`
Role uint8 `gorm:"default:0"`
}
type Class struct {
db.ModelWithUID
db.ModelPlace
SchoolUID string `gorm:"type:char(32);index"`
Grade string `gorm:"type:varchar(32)"`
Name string `gorm:"type:varchar(64)"`
Type uint8 `gorm:"default:0"`
}
type School struct {
db.ModelWithUID
CityUID string `gorm:"type:char(32);index:idx_city"`
Name string `gorm:"type:varchar(64);index:idx_city"`
Info string
db.ModelStreet
}
type Homework struct {
db.ModelWithUID
db.ModelContent
ClassUID string `gorm:"type:char(32);index"`
UserUID string `gorm:"type:char(32)"`
Title string `gorm:"type:varchar(64)"`
Content string
}
func init() { db.CmdModels("", &UserClass{}, &Class{}, &School{}, &Homework{}) }

View File

@ -1,7 +1,5 @@
{
"portal": "教务系统",
"placeCreate": "创建班级",
"placeRemove": "删除班级",
"member": "班级成员",
"homework": "家庭作业",
"icons": {

View File

@ -1,43 +1,8 @@
package jiaowuxitong
import (
"shylinux.com/x/ice"
import "shylinux.com/x/ice"
"shylinux.com/x/education/src/jiaowuxitong/model"
)
type userClass struct {
Table
class class
school school
}
func (s userClass) User(m *ice.Message, arg ...string) {
s.FieldsWithCreatedAT(m, s, model.USER_UID, model.ROLE)
if len(arg) == 1 {
s.Select(m, model.CLASS_UID, arg[0])
} else if len(arg) == 2 {
s.SelectDetail(m, model.CLASS_UID, arg[0], model.UID, arg[1])
} else {
return
}
m.RenameAppend(model.ROLE, model.USER_CLASS_ROLE)
s.SelectJoinUser(m)
}
func (s userClass) List(m *ice.Message, arg ...string) {
s.Tables(m, s.class, s.school).FieldsWithCreatedAT(m, s,
model.CLASS_NAME, model.CLASS_TYPE, model.USER_CLASS_ROLE,
model.CITY_UID, model.SCHOOL_NAME, model.GRADE, model.CLASS_UID,
)
if len(arg) == 1 {
s.Select(m, model.USER_UID, arg[0])
} else if len(arg) == 2 {
s.SelectDetail(m, model.USER_UID, arg[0], s.Key(s, model.CLASS_UID), arg[1])
} else {
return
}
s.SelectJoinCity(m)
}
type userClass struct{ Table }
func init() { ice.TeamCtxCmd(userClass{Table: newTable()}) }

View File

@ -4,8 +4,8 @@ import (
"shylinux.com/x/ice"
kit "shylinux.com/x/toolkits"
"shylinux.com/x/enterprise/src/guanlixitong"
"shylinux.com/x/education/src/kaoshixitong/model"
"shylinux.com/x/enterprise/src/guanlixitong"
)
type Table struct {
@ -47,6 +47,6 @@ func (s Table) recordEventWithName(m *ice.Message, info string, arg ...string) {
s.Table.RecordEventWithName(m, m.Option(model.EXAM_UID), info)
}
type Tables struct { Table }
type Tables struct{ Table }
func (s Tables) BeforeMigrate(m *ice.Message, arg ...string) {}
func (s Tables) BeforeMigrate(m *ice.Message, arg ...string) {}

View File

@ -3,41 +3,33 @@ package model
import "shylinux.com/x/mysql-story/src/db"
const (
UID = "uid"
NAME = "name"
TYPE = "type"
ROLE = "role"
TITLE = "title"
CONTENT = "content"
USER_UID = "user_uid"
UID = "uid"
NAME = "name"
TYPE = "type"
ROLE = "role"
TITLE = "title"
CONTENT = "content"
USER_UID = "user_uid"
USER_EXAM_ROLE = "user_exam_role"
EXAM_UID = "exam_uid"
EXAM_NAME = "exam_name"
EXAM_TYPE = "exam_type"
QUESTION_UID = "_uid"
COMPANY_UID = "company_uid"
CITY_UID = "city_uid"
QUESTION_UID = "question_uid"
COMPANY_UID = "company_uid"
CITY_UID = "city_uid"
)
type UserExam struct {
db.ModelWithUID
UserUID string `gorm:"type:char(32);index"`
db.ModelUserPlace
ExamUID string `gorm:"type:char(32);index"`
Role uint8 `gorm:"default:0"`
}
type Exam struct {
db.ModelWithUID
db.ModelPlace
CompanyUID string `gorm:"type:char(32);index"`
Name string `gorm:"type:varchar(64)"`
Type uint8 `gorm:"default:0"`
}
type Question struct {
db.ModelWithUID
db.ModelContent
ExamUID string `gorm:"type:char(32);index"`
UserUID string `gorm:"type:char(32);index"`
Title string `gorm:"type:varchar(64)"`
Content string
}
func init() { db.CmdModels("", &UserExam{}, &Exam{}, &Question{}) }
func init() { db.CmdModels("", &UserExam{}, &Exam{}, &Question{}) }

View File

@ -1,10 +1,8 @@
{
"portal": "考试系统",
"placeCreate": "创建场景",
"placeRemove": "删除场景",
"": "场景应用",
"question": "场景应用",
"icons": {
"": "https://img.icons8.com/officel/80/activity-grid.png"
"question": "https://img.icons8.com/officel/80/activity-grid.png"
},
"input": {
"My Exam": "我的场景",

View File

@ -1,43 +1,8 @@
package kaoshixitong
import (
"shylinux.com/x/ice"
import "shylinux.com/x/ice"
"shylinux.com/x/education/src/kaoshixitong/model"
)
type userExam struct {
Table
exam exam
}
func (s userExam) User(m *ice.Message, arg ...string) {
s.FieldsWithCreatedAT(m, s, model.USER_UID, model.ROLE)
if len(arg) == 1 {
s.Select(m, model.EXAM_UID, arg[0])
} else if len(arg) == 2 {
s.SelectDetail(m, model.EXAM_UID, arg[0], model.UID, arg[1])
} else {
return
}
m.RenameAppend(model.ROLE, model.USER_EXAM_ROLE)
s.SelectJoinUser(m)
}
func (s userExam) List(m *ice.Message, arg ...string) {
s.Tables(m, s.exam).FieldsWithCreatedAT(m, s,
model.EXAM_NAME, model.EXAM_TYPE, model.USER_EXAM_ROLE,
model.COMPANY_UID, model.EXAM_UID,
)
if len(arg) == 1 {
s.Select(m, model.USER_UID, arg[0])
} else if len(arg) == 2 {
s.SelectDetail(m, model.USER_UID, arg[0], s.Key(s, model.EXAM_UID), arg[1])
} else {
return
}
s.SelectJoinCompany(m)
s.SelectJoinCity(m)
}
type userExam struct{ Table }
func init() { ice.TeamCtxCmd(userExam{}) }
@ -54,9 +19,9 @@ const (
var UserExamRoleList = map[UserExamRole]string{
UserExamVisitor: "visitor",
UserExamCreator: "creator",
UserExamLeader: "leader",
UserExamWorker: "worker",
UserExamServer: "server",
UserExamLeader: "leader",
UserExamWorker: "worker",
UserExamServer: "server",
}
func (s UserExamRole) String() string { return UserExamRoleList[s] }
func (s UserExamRole) String() string { return UserExamRoleList[s] }

View File

@ -3,14 +3,12 @@ package main
import (
"shylinux.com/x/ice"
_ "shylinux.com/x/education/src/jiaocaiziliao"
_ "shylinux.com/x/education/src/jiaowuxitong"
_ "shylinux.com/x/education/src/kaoshixitong"
_ "shylinux.com/x/education/src/zaixianketang"
_ "shylinux.com/x/education/src/zhengshuxitong"
_ "shylinux.com/x/education/src/jiaocaiziliao"
)
func main() { print(ice.Run()) }
func init() { ice.Info.Titles = "云教育" }
func init() { ice.Info.Titles = "云教育" }

View File

@ -1,23 +0,0 @@
package shichangyingxiao
import "shylinux.com/x/ice"
type channel struct{ Table }
func init() { ice.TeamCtxCmd(channel{}) }
type ChannelType int
const (
ChannelRD ChannelType = iota
ChannelOP
ChannelHR
)
var ChannelTypeList = map[ChannelType]string{
ChannelRD: "RD",
ChannelOP: "OP",
ChannelHR: "HR",
}
func (s ChannelType) String() string { return ChannelTypeList[s] }

View File

@ -1,52 +0,0 @@
package shichangyingxiao
import (
"shylinux.com/x/ice"
kit "shylinux.com/x/toolkits"
"shylinux.com/x/enterprise/src/guanlixitong"
"shylinux.com/x/education/src/shichangyingxiao/model"
)
type Table struct {
guanlixitong.Table
list string `name:"list channel_uid uid auto" role:"void"`
}
func (s Table) Inputs(m *ice.Message, arg ...string) {
switch arg[0] {
case model.USER_CHANNEL_ROLE:
s.InputsListRole(m, UserChannelRoleList, arg...)
case model.CHANNEL_TYPE:
s.InputsList(m, ChannelTypeList, arg...)
default:
s.Table.Inputs(m, arg...)
}
}
func (s Table) RewriteAppend(m *ice.Message, arg ...string) *ice.Message {
m.RewriteAppend(func(value, key string, index int) string {
switch key {
case model.USER_CHANNEL_ROLE:
value = UserChannelRole(kit.Int(value)).String()
case model.CHANNEL_TYPE:
value = ChannelType(kit.Int(value)).String()
}
return value
})
return s.Table.RewriteAppend(m)
}
func (s Table) CheckRole(m *ice.Message, arg ...string) *ice.Message {
role := UserChannelRole(kit.Int(m.Cmd(userChannel{}, s.Select, m.OptionSimple(model.CHANNEL_UID, model.USER_UID)).Append(model.ROLE)))
m.WarnNotRight(!kit.IsIn(role.String(), append(arg, UserChannelCreator.String())...), role.String())
return m
}
func (s Table) recordEvent(m *ice.Message, info string, arg ...string) {
s.Table.RecordEvent(m, m.Option(model.CHANNEL_UID), info, kit.Select(m.Option(model.UID), arg, 0))
}
func (s Table) recordEventWithName(m *ice.Message, info string, arg ...string) {
s.Table.RecordEventWithName(m, m.Option(model.CHANNEL_UID), info)
}
type Tables struct { Table }
func (s Tables) BeforeMigrate(m *ice.Message, arg ...string) {}

View File

@ -1,43 +0,0 @@
package model
import "shylinux.com/x/mysql-story/src/db"
const (
UID = "uid"
NAME = "name"
TYPE = "type"
ROLE = "role"
TITLE = "title"
CONTENT = "content"
USER_UID = "user_uid"
USER_CHANNEL_ROLE = "user_channel_role"
CHANNEL_UID = "channel_uid"
CHANNEL_NAME = "channel_name"
CHANNEL_TYPE = "channel_type"
PROMOTION_UID = "_uid"
COMPANY_UID = "company_uid"
CITY_UID = "city_uid"
)
type UserChannel struct {
db.ModelWithUID
UserUID string `gorm:"type:char(32);index"`
ChannelUID string `gorm:"type:char(32);index"`
Role uint8 `gorm:"default:0"`
}
type Channel struct {
db.ModelWithUID
CompanyUID string `gorm:"type:char(32);index"`
Name string `gorm:"type:varchar(64)"`
Type uint8 `gorm:"default:0"`
}
type Promotion struct {
db.ModelWithUID
ChannelUID string `gorm:"type:char(32);index"`
UserUID string `gorm:"type:char(32);index"`
Title string `gorm:"type:varchar(64)"`
Content string
}
func init() { db.CmdModels("", &UserChannel{}, &Channel{}, &Promotion{}) }

View File

@ -1,15 +0,0 @@
package shichangyingxiao
import (
"shylinux.com/x/community/src/gonganxitong"
"shylinux.com/x/enterprise/src/guanlixitong"
)
type Portal struct {
gonganxitong.Portal
placeCreate string `name:"placeCreate city_name* company_name* channel_name*" role:"void"`
}
func init() {
gonganxitong.PortalCmd(Portal{Portal: gonganxitong.NewPortal(userChannel{}, channel{}, guanlixitong.Company{})})
}

View File

@ -1,33 +0,0 @@
{
"portal": "市场营销",
"placeCreate": "创建场景",
"placeRemove": "删除场景",
"": "场景应用",
"icons": {
"": "https://img.icons8.com/officel/80/activity-grid.png"
},
"input": {
"My Channel": "我的场景",
"user_channel_role": "用户角色",
"channel_name": "场景名称",
"channel_type": "场景类型"
},
"value": {
"user_channel_role": {
"visitor": "访客",
"creator": "创建人",
"leader": "管理人员",
"worker": "工作人员",
"server": "服务人员",
"style": {
"creator": "danger"
}
},
"channel_type": {
"term": "学期制",
"weekly": "周期性",
"step": "阶段性",
"free": "自由式"
}
}
}

View File

@ -1,25 +0,0 @@
package shichangyingxiao
import (
"shylinux.com/x/ice"
kit "shylinux.com/x/toolkits"
"shylinux.com/x/education/src/shichangyingxiao/model"
)
type promotion struct {
Table
channel channel
userChannel userChannel
create string `name:"create title* content*" role:"leader"`
}
func (s promotion) Create(m *ice.Message, arg ...string) {
s.Table.Create(m, kit.Simple(arg, m.OptionSimple(model.USER_UID, model.CHANNEL_UID))...)
s.recordEventWithName(m, "")
}
func (s promotion) List(m *ice.Message, arg ...string) {
s.TablesWithRole(m, arg, s.userChannel, s.channel, s, model.TITLE, model.CONTENT).Display("")
}
func init() { ice.TeamCtxCmd(promotion{}) }

View File

@ -1,9 +0,0 @@
Volcanos(chat.ONIMPORT, {
_init: function(can, msg) { can.onimport.shareTitle(can, msg)
can.onimport.itemcards(can, msg, function(value) { return [
{view: html.TITLE, list: [value.title]},
{view: html.STATUS, list: [value.uid.slice(0, 6), can.base.TimeTrim(value.created_at), value.user_name]},
{view: html.OUTPUT, list: [value.content]},
] })
},
})

View File

@ -1,62 +0,0 @@
package shichangyingxiao
import (
"shylinux.com/x/ice"
"shylinux.com/x/education/src/shichangyingxiao/model"
)
type userChannel struct {
Table
channel channel
}
func (s userChannel) User(m *ice.Message, arg ...string) {
s.FieldsWithCreatedAT(m, s, model.USER_UID, model.ROLE)
if len(arg) == 1 {
s.Select(m, model.CHANNEL_UID, arg[0])
} else if len(arg) == 2 {
s.SelectDetail(m, model.CHANNEL_UID, arg[0], model.UID, arg[1])
} else {
return
}
m.RenameAppend(model.ROLE, model.USER_CHANNEL_ROLE)
s.SelectJoinUser(m)
}
func (s userChannel) List(m *ice.Message, arg ...string) {
s.Tables(m, s.channel).FieldsWithCreatedAT(m, s,
model.CHANNEL_NAME, model.CHANNEL_TYPE, model.USER_CHANNEL_ROLE,
model.COMPANY_UID, model.CHANNEL_UID,
)
if len(arg) == 1 {
s.Select(m, model.USER_UID, arg[0])
} else if len(arg) == 2 {
s.SelectDetail(m, model.USER_UID, arg[0], s.Key(s, model.CHANNEL_UID), arg[1])
} else {
return
}
s.SelectJoinCompany(m)
s.SelectJoinCity(m)
}
func init() { ice.TeamCtxCmd(userChannel{}) }
type UserChannelRole int
const (
UserChannelVisitor UserChannelRole = iota
UserChannelCreator
UserChannelLeader
UserChannelWorker
UserChannelServer
)
var UserChannelRoleList = map[UserChannelRole]string{
UserChannelVisitor: "visitor",
UserChannelCreator: "creator",
UserChannelLeader: "leader",
UserChannelWorker: "worker",
UserChannelServer: "server",
}
func (s UserChannelRole) String() string { return UserChannelRoleList[s] }

View File

@ -3,41 +3,33 @@ package model
import "shylinux.com/x/mysql-story/src/db"
const (
UID = "uid"
NAME = "name"
TYPE = "type"
ROLE = "role"
TITLE = "title"
CONTENT = "content"
USER_UID = "user_uid"
UID = "uid"
NAME = "name"
TYPE = "type"
ROLE = "role"
TITLE = "title"
CONTENT = "content"
USER_UID = "user_uid"
USER_COURSE_ROLE = "user_course_role"
COURSE_UID = "course_uid"
COURSE_NAME = "course_name"
COURSE_TYPE = "course_type"
LESSON_UID = "_uid"
COMPANY_UID = "company_uid"
CITY_UID = "city_uid"
LESSON_UID = "lesson_uid"
COMPANY_UID = "company_uid"
CITY_UID = "city_uid"
)
type UserCourse struct {
db.ModelWithUID
UserUID string `gorm:"type:char(32);index"`
db.ModelUserPlace
CourseUID string `gorm:"type:char(32);index"`
Role uint8 `gorm:"default:0"`
}
type Course struct {
db.ModelWithUID
db.ModelPlace
CompanyUID string `gorm:"type:char(32);index"`
Name string `gorm:"type:varchar(64)"`
Type uint8 `gorm:"default:0"`
}
type Lesson struct {
db.ModelWithUID
db.ModelContent
CourseUID string `gorm:"type:char(32);index"`
UserUID string `gorm:"type:char(32);index"`
Title string `gorm:"type:varchar(64)"`
Content string
}
func init() { db.CmdModels("", &UserCourse{}, &Course{}, &Lesson{}) }
func init() { db.CmdModels("", &UserCourse{}, &Course{}, &Lesson{}) }

View File

@ -1,7 +1,5 @@
{
"portal": "在线课堂",
"placeCreate": "创建场景",
"placeRemove": "删除场景",
"": "场景应用",
"icons": {
"": "https://img.icons8.com/officel/80/activity-grid.png"

View File

@ -1,43 +1,8 @@
package zaixianketang
import (
"shylinux.com/x/ice"
import "shylinux.com/x/ice"
"shylinux.com/x/education/src/zaixianketang/model"
)
type userCourse struct {
Table
course course
}
func (s userCourse) User(m *ice.Message, arg ...string) {
s.FieldsWithCreatedAT(m, s, model.USER_UID, model.ROLE)
if len(arg) == 1 {
s.Select(m, model.COURSE_UID, arg[0])
} else if len(arg) == 2 {
s.SelectDetail(m, model.COURSE_UID, arg[0], model.UID, arg[1])
} else {
return
}
m.RenameAppend(model.ROLE, model.USER_COURSE_ROLE)
s.SelectJoinUser(m)
}
func (s userCourse) List(m *ice.Message, arg ...string) {
s.Tables(m, s.course).FieldsWithCreatedAT(m, s,
model.COURSE_NAME, model.COURSE_TYPE, model.USER_COURSE_ROLE,
model.COMPANY_UID, model.COURSE_UID,
)
if len(arg) == 1 {
s.Select(m, model.USER_UID, arg[0])
} else if len(arg) == 2 {
s.SelectDetail(m, model.USER_UID, arg[0], s.Key(s, model.COURSE_UID), arg[1])
} else {
return
}
s.SelectJoinCompany(m)
s.SelectJoinCity(m)
}
type userCourse struct{ Table }
func init() { ice.TeamCtxCmd(userCourse{}) }
@ -54,9 +19,9 @@ const (
var UserCourseRoleList = map[UserCourseRole]string{
UserCourseVisitor: "visitor",
UserCourseCreator: "creator",
UserCourseLeader: "leader",
UserCourseWorker: "worker",
UserCourseServer: "server",
UserCourseLeader: "leader",
UserCourseWorker: "worker",
UserCourseServer: "server",
}
func (s UserCourseRole) String() string { return UserCourseRoleList[s] }
func (s UserCourseRole) String() string { return UserCourseRoleList[s] }

View File

@ -1,23 +0,0 @@
package zhengshuxitong
import "shylinux.com/x/ice"
type auth struct{ Table }
func init() { ice.TeamCtxCmd(auth{}) }
type AuthType int
const (
AuthRD AuthType = iota
AuthOP
AuthHR
)
var AuthTypeList = map[AuthType]string{
AuthRD: "RD",
AuthOP: "OP",
AuthHR: "HR",
}
func (s AuthType) String() string { return AuthTypeList[s] }

View File

@ -1,25 +0,0 @@
package zhengshuxitong
import (
"shylinux.com/x/ice"
kit "shylinux.com/x/toolkits"
"shylinux.com/x/education/src/zhengshuxitong/model"
)
type cert struct {
Table
auth auth
userAuth userAuth
create string `name:"create title* content*" role:"leader"`
}
func (s cert) Create(m *ice.Message, arg ...string) {
s.Table.Create(m, kit.Simple(arg, m.OptionSimple(model.USER_UID, model.AUTH_UID))...)
s.recordEventWithName(m, "")
}
func (s cert) List(m *ice.Message, arg ...string) {
s.TablesWithRole(m, arg, s.userAuth, s.auth, s, model.TITLE, model.CONTENT).Display("")
}
func init() { ice.TeamCtxCmd(cert{}) }

View File

@ -1,9 +0,0 @@
Volcanos(chat.ONIMPORT, {
_init: function(can, msg) { can.onimport.shareTitle(can, msg)
can.onimport.itemcards(can, msg, function(value) { return [
{view: html.TITLE, list: [value.title]},
{view: html.STATUS, list: [value.uid.slice(0, 6), can.base.TimeTrim(value.created_at), value.user_name]},
{view: html.OUTPUT, list: [value.content]},
] })
},
})

View File

@ -1,52 +0,0 @@
package zhengshuxitong
import (
"shylinux.com/x/ice"
kit "shylinux.com/x/toolkits"
"shylinux.com/x/enterprise/src/guanlixitong"
"shylinux.com/x/education/src/zhengshuxitong/model"
)
type Table struct {
guanlixitong.Table
list string `name:"list auth_uid uid auto" role:"void"`
}
func (s Table) Inputs(m *ice.Message, arg ...string) {
switch arg[0] {
case model.USER_AUTH_ROLE:
s.InputsListRole(m, UserAuthRoleList, arg...)
case model.AUTH_TYPE:
s.InputsList(m, AuthTypeList, arg...)
default:
s.Table.Inputs(m, arg...)
}
}
func (s Table) RewriteAppend(m *ice.Message, arg ...string) *ice.Message {
m.RewriteAppend(func(value, key string, index int) string {
switch key {
case model.USER_AUTH_ROLE:
value = UserAuthRole(kit.Int(value)).String()
case model.AUTH_TYPE:
value = AuthType(kit.Int(value)).String()
}
return value
})
return s.Table.RewriteAppend(m)
}
func (s Table) CheckRole(m *ice.Message, arg ...string) *ice.Message {
role := UserAuthRole(kit.Int(m.Cmd(userAuth{}, s.Select, m.OptionSimple(model.AUTH_UID, model.USER_UID)).Append(model.ROLE)))
m.WarnNotRight(!kit.IsIn(role.String(), append(arg, UserAuthCreator.String())...), role.String())
return m
}
func (s Table) recordEvent(m *ice.Message, info string, arg ...string) {
s.Table.RecordEvent(m, m.Option(model.AUTH_UID), info, kit.Select(m.Option(model.UID), arg, 0))
}
func (s Table) recordEventWithName(m *ice.Message, info string, arg ...string) {
s.Table.RecordEventWithName(m, m.Option(model.AUTH_UID), info)
}
type Tables struct { Table }
func (s Tables) BeforeMigrate(m *ice.Message, arg ...string) {}

View File

@ -1,43 +0,0 @@
package model
import "shylinux.com/x/mysql-story/src/db"
const (
UID = "uid"
NAME = "name"
TYPE = "type"
ROLE = "role"
TITLE = "title"
CONTENT = "content"
USER_UID = "user_uid"
USER_AUTH_ROLE = "user_auth_role"
AUTH_UID = "auth_uid"
AUTH_NAME = "auth_name"
AUTH_TYPE = "auth_type"
CERT_UID = "_uid"
COMPANY_UID = "company_uid"
CITY_UID = "city_uid"
)
type UserAuth struct {
db.ModelWithUID
UserUID string `gorm:"type:char(32);index"`
AuthUID string `gorm:"type:char(32);index"`
Role uint8 `gorm:"default:0"`
}
type Auth struct {
db.ModelWithUID
CompanyUID string `gorm:"type:char(32);index"`
Name string `gorm:"type:varchar(64)"`
Type uint8 `gorm:"default:0"`
}
type Cert struct {
db.ModelWithUID
AuthUID string `gorm:"type:char(32);index"`
UserUID string `gorm:"type:char(32);index"`
Title string `gorm:"type:varchar(64)"`
Content string
}
func init() { db.CmdModels("", &UserAuth{}, &Auth{}, &Cert{}) }

View File

@ -1,15 +0,0 @@
package zhengshuxitong
import (
"shylinux.com/x/community/src/gonganxitong"
"shylinux.com/x/enterprise/src/guanlixitong"
)
type Portal struct {
gonganxitong.Portal
placeCreate string `name:"placeCreate city_name* company_name* auth_name*" role:"void"`
}
func init() {
gonganxitong.PortalCmd(Portal{Portal: gonganxitong.NewPortal(userAuth{}, auth{}, guanlixitong.Company{})})
}

View File

@ -1,33 +0,0 @@
{
"portal": "证书系统",
"placeCreate": "创建场景",
"placeRemove": "删除场景",
"": "场景应用",
"icons": {
"": "https://img.icons8.com/officel/80/activity-grid.png"
},
"input": {
"My Auth": "我的场景",
"user_auth_role": "用户角色",
"auth_name": "场景名称",
"auth_type": "场景类型"
},
"value": {
"user_auth_role": {
"visitor": "访客",
"creator": "创建人",
"leader": "管理人员",
"worker": "工作人员",
"server": "服务人员",
"style": {
"creator": "danger"
}
},
"auth_type": {
"term": "学期制",
"weekly": "周期性",
"step": "阶段性",
"free": "自由式"
}
}
}

View File

@ -1,62 +0,0 @@
package zhengshuxitong
import (
"shylinux.com/x/ice"
"shylinux.com/x/education/src/zhengshuxitong/model"
)
type userAuth struct {
Table
auth auth
}
func (s userAuth) User(m *ice.Message, arg ...string) {
s.FieldsWithCreatedAT(m, s, model.USER_UID, model.ROLE)
if len(arg) == 1 {
s.Select(m, model.AUTH_UID, arg[0])
} else if len(arg) == 2 {
s.SelectDetail(m, model.AUTH_UID, arg[0], model.UID, arg[1])
} else {
return
}
m.RenameAppend(model.ROLE, model.USER_AUTH_ROLE)
s.SelectJoinUser(m)
}
func (s userAuth) List(m *ice.Message, arg ...string) {
s.Tables(m, s.auth).FieldsWithCreatedAT(m, s,
model.AUTH_NAME, model.AUTH_TYPE, model.USER_AUTH_ROLE,
model.COMPANY_UID, model.AUTH_UID,
)
if len(arg) == 1 {
s.Select(m, model.USER_UID, arg[0])
} else if len(arg) == 2 {
s.SelectDetail(m, model.USER_UID, arg[0], s.Key(s, model.AUTH_UID), arg[1])
} else {
return
}
s.SelectJoinCompany(m)
s.SelectJoinCity(m)
}
func init() { ice.TeamCtxCmd(userAuth{}) }
type UserAuthRole int
const (
UserAuthVisitor UserAuthRole = iota
UserAuthCreator
UserAuthLeader
UserAuthWorker
UserAuthServer
)
var UserAuthRoleList = map[UserAuthRole]string{
UserAuthVisitor: "visitor",
UserAuthCreator: "creator",
UserAuthLeader: "leader",
UserAuthWorker: "worker",
UserAuthServer: "server",
}
func (s UserAuthRole) String() string { return UserAuthRoleList[s] }

View File

@ -1,52 +0,0 @@
package zijinlian
import (
"shylinux.com/x/ice"
kit "shylinux.com/x/toolkits"
"shylinux.com/x/enterprise/src/guanlixitong"
"shylinux.com/x/education/src/zijinlian/model"
)
type Table struct {
guanlixitong.Table
list string `name:"list investor_uid uid auto" role:"void"`
}
func (s Table) Inputs(m *ice.Message, arg ...string) {
switch arg[0] {
case model.USER_INVESTOR_ROLE:
s.InputsListRole(m, UserInvestorRoleList, arg...)
case model.INVESTOR_TYPE:
s.InputsList(m, InvestorTypeList, arg...)
default:
s.Table.Inputs(m, arg...)
}
}
func (s Table) RewriteAppend(m *ice.Message, arg ...string) *ice.Message {
m.RewriteAppend(func(value, key string, index int) string {
switch key {
case model.USER_INVESTOR_ROLE:
value = UserInvestorRole(kit.Int(value)).String()
case model.INVESTOR_TYPE:
value = InvestorType(kit.Int(value)).String()
}
return value
})
return s.Table.RewriteAppend(m)
}
func (s Table) CheckRole(m *ice.Message, arg ...string) *ice.Message {
role := UserInvestorRole(kit.Int(m.Cmd(userInvestor{}, s.Select, m.OptionSimple(model.INVESTOR_UID, model.USER_UID)).Append(model.ROLE)))
m.WarnNotRight(!kit.IsIn(role.String(), append(arg, UserInvestorCreator.String())...), role.String())
return m
}
func (s Table) recordEvent(m *ice.Message, info string, arg ...string) {
s.Table.RecordEvent(m, m.Option(model.INVESTOR_UID), info, kit.Select(m.Option(model.UID), arg, 0))
}
func (s Table) recordEventWithName(m *ice.Message, info string, arg ...string) {
s.Table.RecordEventWithName(m, m.Option(model.INVESTOR_UID), info)
}
type Tables struct { Table }
func (s Tables) BeforeMigrate(m *ice.Message, arg ...string) {}

View File

@ -1,25 +0,0 @@
package zijinlian
import (
"shylinux.com/x/ice"
kit "shylinux.com/x/toolkits"
"shylinux.com/x/education/src/zijinlian/model"
)
type investment struct {
Table
investor investor
userInvestor userInvestor
create string `name:"create title* content*" role:"leader"`
}
func (s investment) Create(m *ice.Message, arg ...string) {
s.Table.Create(m, kit.Simple(arg, m.OptionSimple(model.USER_UID, model.INVESTOR_UID))...)
s.recordEventWithName(m, "")
}
func (s investment) List(m *ice.Message, arg ...string) {
s.TablesWithRole(m, arg, s.userInvestor, s.investor, s, model.TITLE, model.CONTENT).Display("")
}
func init() { ice.TeamCtxCmd(investment{}) }

View File

@ -1,9 +0,0 @@
Volcanos(chat.ONIMPORT, {
_init: function(can, msg) { can.onimport.shareTitle(can, msg)
can.onimport.itemcards(can, msg, function(value) { return [
{view: html.TITLE, list: [value.title]},
{view: html.STATUS, list: [value.uid.slice(0, 6), can.base.TimeTrim(value.created_at), value.user_name]},
{view: html.OUTPUT, list: [value.content]},
] })
},
})

View File

@ -1,23 +0,0 @@
package zijinlian
import "shylinux.com/x/ice"
type investor struct{ Table }
func init() { ice.TeamCtxCmd(investor{}) }
type InvestorType int
const (
InvestorRD InvestorType = iota
InvestorOP
InvestorHR
)
var InvestorTypeList = map[InvestorType]string{
InvestorRD: "RD",
InvestorOP: "OP",
InvestorHR: "HR",
}
func (s InvestorType) String() string { return InvestorTypeList[s] }

View File

@ -1,43 +0,0 @@
package model
import "shylinux.com/x/mysql-story/src/db"
const (
UID = "uid"
NAME = "name"
TYPE = "type"
ROLE = "role"
TITLE = "title"
CONTENT = "content"
USER_UID = "user_uid"
USER_INVESTOR_ROLE = "user_investor_role"
INVESTOR_UID = "investor_uid"
INVESTOR_NAME = "investor_name"
INVESTOR_TYPE = "investor_type"
INVESTMENT_UID = "_uid"
COMPANY_UID = "company_uid"
CITY_UID = "city_uid"
)
type UserInvestor struct {
db.ModelWithUID
UserUID string `gorm:"type:char(32);index"`
InvestorUID string `gorm:"type:char(32);index"`
Role uint8 `gorm:"default:0"`
}
type Investor struct {
db.ModelWithUID
CompanyUID string `gorm:"type:char(32);index"`
Name string `gorm:"type:varchar(64)"`
Type uint8 `gorm:"default:0"`
}
type Investment struct {
db.ModelWithUID
InvestorUID string `gorm:"type:char(32);index"`
UserUID string `gorm:"type:char(32);index"`
Title string `gorm:"type:varchar(64)"`
Content string
}
func init() { db.CmdModels("", &UserInvestor{}, &Investor{}, &Investment{}) }

View File

@ -1,15 +0,0 @@
package zijinlian
import (
"shylinux.com/x/community/src/gonganxitong"
"shylinux.com/x/enterprise/src/guanlixitong"
)
type Portal struct {
gonganxitong.Portal
placeCreate string `name:"placeCreate city_name* company_name* investor_name*" role:"void"`
}
func init() {
gonganxitong.PortalCmd(Portal{Portal: gonganxitong.NewPortal(userInvestor{}, investor{}, guanlixitong.Company{})})
}

View File

@ -1,33 +0,0 @@
{
"portal": "资金链",
"placeCreate": "创建场景",
"placeRemove": "删除场景",
"": "场景应用",
"icons": {
"": "https://img.icons8.com/officel/80/activity-grid.png"
},
"input": {
"My Investor": "我的场景",
"user_investor_role": "用户角色",
"investor_name": "场景名称",
"investor_type": "场景类型"
},
"value": {
"user_investor_role": {
"visitor": "访客",
"creator": "创建人",
"leader": "管理人员",
"worker": "工作人员",
"server": "服务人员",
"style": {
"creator": "danger"
}
},
"investor_type": {
"term": "学期制",
"weekly": "周期性",
"step": "阶段性",
"free": "自由式"
}
}
}

View File

@ -1,62 +0,0 @@
package zijinlian
import (
"shylinux.com/x/ice"
"shylinux.com/x/education/src/zijinlian/model"
)
type userInvestor struct {
Table
investor investor
}
func (s userInvestor) User(m *ice.Message, arg ...string) {
s.FieldsWithCreatedAT(m, s, model.USER_UID, model.ROLE)
if len(arg) == 1 {
s.Select(m, model.INVESTOR_UID, arg[0])
} else if len(arg) == 2 {
s.SelectDetail(m, model.INVESTOR_UID, arg[0], model.UID, arg[1])
} else {
return
}
m.RenameAppend(model.ROLE, model.USER_INVESTOR_ROLE)
s.SelectJoinUser(m)
}
func (s userInvestor) List(m *ice.Message, arg ...string) {
s.Tables(m, s.investor).FieldsWithCreatedAT(m, s,
model.INVESTOR_NAME, model.INVESTOR_TYPE, model.USER_INVESTOR_ROLE,
model.COMPANY_UID, model.INVESTOR_UID,
)
if len(arg) == 1 {
s.Select(m, model.USER_UID, arg[0])
} else if len(arg) == 2 {
s.SelectDetail(m, model.USER_UID, arg[0], s.Key(s, model.INVESTOR_UID), arg[1])
} else {
return
}
s.SelectJoinCompany(m)
s.SelectJoinCity(m)
}
func init() { ice.TeamCtxCmd(userInvestor{}) }
type UserInvestorRole int
const (
UserInvestorVisitor UserInvestorRole = iota
UserInvestorCreator
UserInvestorLeader
UserInvestorWorker
UserInvestorServer
)
var UserInvestorRoleList = map[UserInvestorRole]string{
UserInvestorVisitor: "visitor",
UserInvestorCreator: "creator",
UserInvestorLeader: "leader",
UserInvestorWorker: "worker",
UserInvestorServer: "server",
}
func (s UserInvestorRole) String() string { return UserInvestorRoleList[s] }

View File

@ -36,6 +36,14 @@
"time": "2024-08-28 10:02:38.269"
}
},
"72eb3fc89623556cfa348503328811e1": {
"meta": {
"icons": "https://img.icons8.com/officel/80/activity-grid.png",
"index": "web.team.kaoshixitong.question",
"name": "场景应用",
"time": "2024-08-30 09:39:07.245"
}
},
"ab6b14b549c110a29e13f8ea06e75b08": {
"meta": {
"icons": "https://img.icons8.com/officel/80/qr-code.png",