案例管理,添加修改暂停优化,判断时间不能重叠

This commit is contained in:
xiezhijun
2021-03-04 18:35:06 +08:00
parent f70b85a2ed
commit 2a7c499b24
18 changed files with 1005 additions and 10 deletions

View File

@ -0,0 +1,35 @@
package com.stdiet.custom.domain;
import com.stdiet.common.annotation.Excel;
import com.stdiet.common.core.domain.BaseEntity;
import lombok.Data;
/**
* 客户案例管理对象 sys_customer_case
*
* @author xiezhijun
* @date 2021-03-04
*/
@Data
public class SysCustomerCase extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** $column.columnComment */
private Long id;
/** 案例名称 */
@Excel(name = "案例名称")
private String name;
/** 案例关键词 */
@Excel(name = "案例关键词")
private String keyword;
/** 案例所属客户ID */
@Excel(name = "案例所属客户ID")
private Long customerId;
/** 删除标识 0未删除 1已删除默认0 */
private Long delFlag;
}

View File

@ -0,0 +1,35 @@
package com.stdiet.custom.domain;
import com.stdiet.common.annotation.Excel;
import com.stdiet.common.core.domain.BaseEntity;
import lombok.Data;
/**
* 客户案例对应文件管理对象 sys_customer_case_file
*
* @author xiezhijun
* @date 2021-03-04
*/
@Data
public class SysCustomerCaseFile extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** $column.columnComment */
private Long id;
/** 案例文件 */
@Excel(name = "案例文件")
private Long caseId;
/** 文件路径 */
@Excel(name = "文件路径")
private String fileUrl;
/** 文件名字 */
@Excel(name = "文件名字")
private String fileName;
/** 删除标识 0未删除 1已删除 */
private Long delFlag;
}