123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256 |
- package models
-
- type Dataconfig struct {
- ID int64 `gorm:"column:id" json:"id" form:"id"`
- ParentId int64 `gorm:"column:parent_id" json:"parent_id" form:"parent_id"`
- Module string `gorm:"column:module" json:"module" form:"module"`
- OrgId int64 `gorm:"column:org_id" json:"org_id" form:"org_id"`
- Name string `gorm:"column:name" json:"name" form:"name"`
- FieldName string `gorm:"column:field_name" json:"field_name" form:"field_name"`
- Value int `gorm:"column:value" json:"value" form:"value"`
- CreatedTime string `gorm:"column:create_time" json:"create_time" form:"create_time"`
- UpdatedTime string `gorm:"column:update_time" json:"update_time" form:"update_time"`
- CreateUserId int64 `gorm:"column:create_user_id" json:"create_user_id" form:"create_user_id"`
- Status int64 `gorm:"column:status" json:"status" form:"status"`
- Remark string `gorm:"column:remark" json:"remark" form:"remark"`
- DeleteIdSystem int64 `gorm:"column:delete_id_system" json:"delete_id_system" form:"delete_id_system"`
- Title string `gorm:"column:title" json:"title" form:"title"`
- Content string `gorm:"column:content" json:"content" form:"content"`
- Order int64 `gorm:"column:orders" json:"orders" form:"orders"`
- Code string `gorm:"column:code" json:"code" form:"code"`
- FieldType int64 `gorm:"column:field_type" json:"field_type" form:"field_type"`
- }
-
- func (Dataconfig) TableName() string {
- return "xt_data_config"
- }
-
- type DictDataconfig struct {
- ID int64 `gorm:"column:id" json:"id" form:"id"`
- ParentId int64 `gorm:"column:parent_id" json:"parent_id" form:"parent_id"`
- Module string `gorm:"column:module" json:"module" form:"module"`
- OrgId int64 `gorm:"column:org_id" json:"org_id" form:"org_id"`
- Name string `gorm:"column:name" json:"name" form:"name"`
- FieldName string `gorm:"column:field_name" json:"field_name" form:"field_name"`
- Value int `gorm:"column:value" json:"value" form:"value"`
- CreatedTime string `gorm:"column:create_time" json:"create_time" form:"create_time"`
- UpdatedTime string `gorm:"column:update_time" json:"update_time" form:"update_time"`
- CreateUserId int64 `gorm:"column:create_user_id" json:"create_user_id" form:"create_user_id"`
- Status int64 `gorm:"column:status" json:"status" form:"status"`
- Remark string `gorm:"column:remark" json:"remark" form:"remark"`
- DeleteIdSystem int64 `gorm:"column:delete_id_system" json:"delete_id_system" form:"delete_id_system"`
- Title string `gorm:"column:title" json:"title" form:"title"`
- Content string `gorm:"column:content" json:"content" form:"content"`
- Order int64 `gorm:"column:orders" json:"orders" form:"orders"`
- Code string `gorm:"column:code" json:"code" form:"code"`
- }
-
- func (DictDataconfig) TableName() string {
- return "xt_drug_data_config"
- }
-
- type DictionaryDataconfig struct {
- ID int64 `gorm:"column:id" json:"id" form:"id"`
- ParentId int64 `gorm:"column:parent_id" json:"parent_id" form:"parent_id"`
- Module string `gorm:"column:module" json:"module" form:"module"`
- OrgId int64 `gorm:"column:org_id" json:"org_id" form:"org_id"`
- Name string `gorm:"column:name" json:"name" form:"name"`
- FieldName string `gorm:"column:field_name" json:"field_name" form:"field_name"`
- Value int `gorm:"column:value" json:"value" form:"value"`
- CreatedTime string `gorm:"column:create_time" json:"create_time" form:"create_time"`
- UpdatedTime string `gorm:"column:update_time" json:"update_time" form:"update_time"`
- CreateUserId int64 `gorm:"column:create_user_id" json:"create_user_id" form:"create_user_id"`
- Status int64 `gorm:"column:status" json:"status" form:"status"`
- Remark string `gorm:"column:remark" json:"remark" form:"remark"`
- DeleteIdSystem int64 `gorm:"column:delete_id_system" json:"delete_id_system" form:"delete_id_system"`
- Title string `gorm:"column:title" json:"title" form:"title"`
- Content string `gorm:"column:content" json:"content" form:"content"`
- Order int64 `gorm:"column:orders" json:"orders" form:"orders"`
- Code string `gorm:"column:code" json:"code" form:"code"`
- }
-
- func (DictionaryDataconfig) TableName() string {
- return "xt_drug_data_config"
- }
-
- type DictionaryConfigViewModel struct {
- ID int64 `gorm:"column:id" json:"id" form:"id"`
- ParentId int64 `gorm:"column:parent_id" json:"parent_id" form:"parent_id"`
- Module string `gorm:"column:module" json:"module" form:"module"`
- OrgId int64 `gorm:"column:org_id" json:"org_id" form:"org_id"`
- Name string `gorm:"column:name" json:"name" form:"name"`
- FieldName string `gorm:"column:field_name" json:"field_name" form:"field_name"`
- Value int `gorm:"column:value" json:"value" form:"value"`
- CreatedTime string `gorm:"column:create_time" json:"create_time" form:"create_time"`
- UpdatedTime string `gorm:"column:update_time" json:"update_time" form:"update_time"`
- CreateUserId int64 `gorm:"column:create_user_id" json:"create_user_id" form:"create_user_id"`
- Status int64 `gorm:"column:status" json:"status" form:"status"`
- Remark string `gorm:"column:remark" json:"remark" form:"remark"`
- Title string `gorm:"column:title" json:"title" form:"title"`
- Content string `gorm:"column:content" json:"content" form:"content"`
- Order int64 `gorm:"column:orders" json:"orders" form:"orders"`
- Childs []*DictionaryDataconfig `json:"childs" `
- }
-
- func (DictionaryConfigViewModel) TableName() string {
- return "xt_drug_data_config"
- }
-
- type ConfigViewModel struct {
- ID int64 `gorm:"column:id" json:"id" form:"id"`
- ParentId int64 `gorm:"column:parent_id" json:"parent_id" form:"parent_id"`
- Module string `gorm:"column:module" json:"module" form:"module"`
- OrgId int64 `gorm:"column:org_id" json:"org_id" form:"org_id"`
- Name string `gorm:"column:name" json:"name" form:"name"`
- FieldName string `gorm:"column:field_name" json:"field_name" form:"field_name"`
- Value int `gorm:"column:value" json:"value" form:"value"`
- CreatedTime string `gorm:"column:create_time" json:"create_time" form:"create_time"`
- UpdatedTime string `gorm:"column:update_time" json:"update_time" form:"update_time"`
- CreateUserId int64 `gorm:"column:create_user_id" json:"create_user_id" form:"create_user_id"`
- Status int64 `gorm:"column:status" json:"status" form:"status"`
- Remark string `gorm:"column:remark" json:"remark" form:"remark"`
- Title string `gorm:"column:title" json:"title" form:"title"`
- Content string `gorm:"column:content" json:"content" form:"content"`
- Order int64 `gorm:"column:orders" json:"orders" form:"orders"`
- Childs []*Dataconfig `json:"childs" `
- }
-
- func (ConfigViewModel) TableName() string {
- return "xt_data_config"
- }
-
- type DictConfigViewModel struct {
- ID int64 `gorm:"column:id" json:"id" form:"id"`
- ParentId int64 `gorm:"column:parent_id" json:"parent_id" form:"parent_id"`
- Module string `gorm:"column:module" json:"module" form:"module"`
- OrgId int64 `gorm:"column:org_id" json:"org_id" form:"org_id"`
- Name string `gorm:"column:name" json:"name" form:"name"`
- FieldName string `gorm:"column:field_name" json:"field_name" form:"field_name"`
- Value int `gorm:"column:value" json:"value" form:"value"`
- CreatedTime string `gorm:"column:create_time" json:"create_time" form:"create_time"`
- UpdatedTime string `gorm:"column:update_time" json:"update_time" form:"update_time"`
- CreateUserId int64 `gorm:"column:create_user_id" json:"create_user_id" form:"create_user_id"`
- Status int64 `gorm:"column:status" json:"status" form:"status"`
- Remark string `gorm:"column:remark" json:"remark" form:"remark"`
- Title string `gorm:"column:title" json:"title" form:"title"`
- Content string `gorm:"column:content" json:"content" form:"content"`
- Order int64 `gorm:"column:orders" json:"orders" form:"orders"`
- Childs []*DictDataconfig `json:"childs" `
- }
-
- func (DictConfigViewModel) TableName() string {
- return "xt_drug_data_config"
- }
-
- type FiledConfig struct {
- ID int64 `gorm:"column:id" json:"id"`
- OrgId int64 `gorm:"column:org_id" json:"org_id"`
- Module int64 `gorm:"column:module" json:"module"`
- FiledName string `gorm:"column:filed_name" json:"filed_name"`
- FiledNameCn string `gorm:"column:filed_name_cn" json:"filed_name_cn"`
- IsShow int64 `gorm:"column:is_show" json:"is_show"`
- CreateTime int64 `gorm:"column:create_time" json:"create_time"`
- UpdateTime int64 `gorm:"column:update_time" json:"update_time"`
- SysModule int64 `gorm:"column:sys_module" json:"sys_module" form:"sys_module"`
- IsWrite int64 `gorm:"column:is_write" json:"is_write" form:"is_write"`
- IsSecondMenu int64 `gorm:"column:is_second_menu" json:"is_second_menu" form:"is_second_menu"`
- }
-
- func (FiledConfig) TableName() string {
- return "xt_filed_config"
- }
-
- type OutpatientServiceSick struct {
- ID int64 `gorm:"column:id" json:"id" form:"id"`
- ClassName string `gorm:"column:class_name" json:"class_name" form:"class_name"`
- Pinyin string `gorm:"column:pinyin" json:"pinyin" form:"pinyin"`
- Wubi string `gorm:"column:wubi" json:"wubi" form:"wubi"`
- ContentCode string `gorm:"column:content_code" json:"content_code" form:"content_code"`
- CountryCode string `gorm:"column:country_code" json:"country_code" form:"country_code"`
- CountryContentName string `gorm:"column:country_content_name" json:"country_content_name" form:"country_content_name"`
- Remark string `gorm:"column:remark" json:"remark" form:"remark"`
- UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
- Status int64 `gorm:"column:status" json:"status" form:"status"`
- Ctime int64 `gorm:"column:ctime" json:"ctime" form:"ctime"`
- Mtime int64 `gorm:"column:mtime" json:"mtime" form:"mtime"`
- }
-
- func (OutpatientServiceSick) TableName() string {
- return "outpatient_service_sick"
- }
-
- type XtHisAddtionConfig struct {
- ID int64 `gorm:"column:id" json:"id" form:"id"`
- Code string `gorm:"column:code" json:"code" form:"code"`
- Name string `gorm:"column:name" json:"name" form:"name"`
- Price float64 `gorm:"column:price" json:"price" form:"price"`
- Status int64 `gorm:"column:status" json:"status" form:"status"`
- Ctime int64 `gorm:"column:ctime" json:"ctime" form:"ctime"`
- Mtime int64 `gorm:"column:mtime" json:"mtime" form:"mtime"`
- UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
- }
-
- func (XtHisAddtionConfig) TableName() string {
- return "xt_his_addtion_config"
- }
-
- type XtPatientDiagnose struct {
- ID int64 `gorm:"column:id" json:"id" form:"id"`
- ClassName string `gorm:"column:class_name" json:"class_name" form:"class_name"`
- Sort int64 `gorm:"column:sort" json:"sort" form:"sort"`
- UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
- Status int64 `gorm:"column:status" json:"status" form:"status"`
- Ctime int64 `gorm:"column:ctime" json:"ctime" form:"ctime"`
- Mtime int64 `gorm:"column:mtime" json:"mtime" form:"mtime"`
- }
-
- func (XtPatientDiagnose) TableName() string {
- return "xt_patient_diagnose"
- }
-
- type XtDrugQuery struct {
- ID int64 `gorm:"column:id" json:"id" form:"id"`
- UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
- Status int64 `gorm:"column:status" json:"status" form:"status"`
- }
-
- func (XtDrugQuery) TableName() string {
- return "xt_drug_query"
- }
-
- type XtDrugCheckQuery struct {
- ID int64 `gorm:"column:id" json:"id" form:"id"`
- DrugId int64 `gorm:"column:drug_id" json:"drug_id" form:"drug_id"`
- RecordDate int64 `gorm:"column:record_date" json:"record_date" form:"record_date"`
- AdviceCount int64 `gorm:"column:advice_count" json:"advice_count" form:"advice_count"`
- OutCount int64 `gorm:"column:out_count" json:"out_count" form:"out_count"`
- PatientId int64 `gorm:"column:patient_id" json:"patient_id" form:"patient_id"`
- UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
- ExecutionState int64 `gorm:"column:execution_state" json:"execution_state" form:"execution_state"`
- IsMedicine int64 `gorm:"column:is_medicine" json:"is_medicine" form:"is_medicine"`
- DrugName string `gorm:"column:drug_name" json:"drug_name" form:"drug_name"`
- SpecificationName string `gorm:"column:specification_name" json:"specification_name" form:"specification_name"`
- Name string `gorm:"column:name" json:"name" form:"name"`
- }
-
- func (XtDrugCheckQuery) TableName() string {
- return "xt_drug_check_query"
- }
-
- type XtStockCheckQuery struct {
- ID int64 `gorm:"column:id" json:"id" form:"id"`
- GoodId int64 `gorm:"column:good_id" json:"good_id" form:"good_id"`
- RecordDate int64 `gorm:"column:record_date" json:"record_date" form:"record_date"`
- AdviceCount int64 `gorm:"column:advice_count" json:"advice_count" form:"advice_count"`
- OutCount int64 `gorm:"column:out_count" json:"out_count" form:"out_count"`
- PatientId int64 `gorm:"column:patient_id" json:"patient_id" form:"patient_id"`
- UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
- GoodName string `gorm:"column:good_name" json:"good_name" form:"good_name"`
- SpecificationName string `gorm:"column:specification_name" json:"specification_name" form:"specification_name"`
- Name string `gorm:"column:name" json:"name" form:"name"`
- }
-
- func (XtStockCheckQuery) TableName() string {
- return "xt_stock_check_query"
- }
|