You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					64 lines
				
				2.4 KiB
			
		
		
			
		
	
	
					64 lines
				
				2.4 KiB
			| 
								 
											1 year ago
										 
									 | 
							
								from datetime import datetime
							 | 
						||
| 
								 
											1 year ago
										 
									 | 
							
								from pydantic import BaseModel, ConfigDict, Field
							 | 
						||
| 
								 
											2 years ago
										 
									 | 
							
								from pydantic.alias_generators import to_camel
							 | 
						||
| 
								 
											1 year ago
										 
									 | 
							
								from pydantic_validation_decorator import NotBlank, Size, Xss
							 | 
						||
| 
								 
											1 year ago
										 
									 | 
							
								from typing import Literal, Optional
							 | 
						||
| 
								 
											1 year ago
										 
									 | 
							
								from module_admin.annotation.pydantic_annotation import as_query
							 | 
						||
| 
								 
											2 years ago
										 
									 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								class NoticeModel(BaseModel):
							 | 
						||
| 
								 | 
							
								    """
							 | 
						||
| 
								 | 
							
								    通知公告表对应pydantic模型
							 | 
						||
| 
								 | 
							
								    """
							 | 
						||
| 
								 
											1 year ago
										 
									 | 
							
								
							 | 
						||
| 
								 
											2 years ago
										 
									 | 
							
								    model_config = ConfigDict(alias_generator=to_camel, from_attributes=True)
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 
											1 year ago
										 
									 | 
							
								    notice_id: Optional[int] = Field(default=None, description='公告ID')
							 | 
						||
| 
								 | 
							
								    notice_title: Optional[str] = Field(default=None, description='公告标题')
							 | 
						||
| 
								 | 
							
								    notice_type: Optional[Literal['1', '2']] = Field(default=None, description='公告类型(1通知 2公告)')
							 | 
						||
| 
								 | 
							
								    notice_content: Optional[bytes] = Field(default=None, description='公告内容')
							 | 
						||
| 
								 | 
							
								    status: Optional[Literal['0', '1']] = Field(default=None, description='公告状态(0正常 1关闭)')
							 | 
						||
| 
								 | 
							
								    create_by: Optional[str] = Field(default=None, description='创建者')
							 | 
						||
| 
								 | 
							
								    create_time: Optional[datetime] = Field(default=None, description='创建时间')
							 | 
						||
| 
								 | 
							
								    update_by: Optional[str] = Field(default=None, description='更新者')
							 | 
						||
| 
								 | 
							
								    update_time: Optional[datetime] = Field(default=None, description='更新时间')
							 | 
						||
| 
								 | 
							
								    remark: Optional[str] = Field(default=None, description='备注')
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    @Xss(field_name='notice_title', message='公告标题不能包含脚本字符')
							 | 
						||
| 
								 | 
							
								    @NotBlank(field_name='notice_title', message='公告标题不能为空')
							 | 
						||
| 
								 | 
							
								    @Size(field_name='notice_title', min_length=0, max_length=50, message='公告标题不能超过50个字符')
							 | 
						||
| 
								 | 
							
								    def get_notice_title(self):
							 | 
						||
| 
								 | 
							
								        return self.notice_title
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    def validate_fields(self):
							 | 
						||
| 
								 | 
							
								        self.get_notice_title()
							 | 
						||
| 
								 
											2 years ago
										 
									 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								class NoticeQueryModel(NoticeModel):
							 | 
						||
| 
								 | 
							
								    """
							 | 
						||
| 
								 | 
							
								    通知公告管理不分页查询模型
							 | 
						||
| 
								 | 
							
								    """
							 | 
						||
| 
								 
											1 year ago
										 
									 | 
							
								
							 | 
						||
| 
								 
											1 year ago
										 
									 | 
							
								    begin_time: Optional[str] = Field(default=None, description='开始时间')
							 | 
						||
| 
								 | 
							
								    end_time: Optional[str] = Field(default=None, description='结束时间')
							 | 
						||
| 
								 
											2 years ago
										 
									 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 
											1 year ago
										 
									 | 
							
								@as_query
							 | 
						||
| 
								 
											2 years ago
										 
									 | 
							
								class NoticePageQueryModel(NoticeQueryModel):
							 | 
						||
| 
								 | 
							
								    """
							 | 
						||
| 
								 | 
							
								    通知公告管理分页查询模型
							 | 
						||
| 
								 | 
							
								    """
							 | 
						||
| 
								 
											1 year ago
										 
									 | 
							
								
							 | 
						||
| 
								 
											1 year ago
										 
									 | 
							
								    page_num: int = Field(default=1, description='当前页码')
							 | 
						||
| 
								 | 
							
								    page_size: int = Field(default=10, description='每页记录数')
							 | 
						||
| 
								 
											2 years ago
										 
									 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								class DeleteNoticeModel(BaseModel):
							 | 
						||
| 
								 | 
							
								    """
							 | 
						||
| 
								 | 
							
								    删除通知公告模型
							 | 
						||
| 
								 | 
							
								    """
							 | 
						||
| 
								 
											1 year ago
										 
									 | 
							
								
							 | 
						||
| 
								 
											2 years ago
										 
									 | 
							
								    model_config = ConfigDict(alias_generator=to_camel)
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 
											1 year ago
										 
									 | 
							
								    notice_ids: str = Field(description='需要删除的公告ID')
							 |