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.
72 lines
1.6 KiB
72 lines
1.6 KiB
package com.bs.ct.domain;
|
|
|
|
import com.bs.common.annotation.Excel;
|
|
import com.bs.common.core.domain.BaseEntity;
|
|
import lombok.Data;
|
|
import lombok.EqualsAndHashCode;
|
|
import lombok.experimental.Accessors;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
/**
|
|
* 任务机构信息对象 ct_task_branch
|
|
*
|
|
* @author bs
|
|
* @date 2025-02-22
|
|
*/
|
|
@EqualsAndHashCode(callSuper = true)
|
|
@Accessors(chain = true)
|
|
@TableName("ct_task_branch")
|
|
@Data
|
|
public class CtTaskBranch extends BaseEntity{
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
/** id */
|
|
@TableId(value = "id",type = IdType.AUTO)
|
|
@ApiModelProperty(value = "id")
|
|
private Long id;
|
|
|
|
/** 任务id */
|
|
|
|
@Excel(name = "任务id")
|
|
@ApiModelProperty(value = "任务id")
|
|
private Long taskId;
|
|
|
|
/** 类型人员、机构 */
|
|
|
|
@Excel(name = "类型人员、机构")
|
|
@ApiModelProperty(value = "类型人员、机构")
|
|
private String type;
|
|
|
|
/** 机构代码 */
|
|
|
|
@Excel(name = "机构代码")
|
|
@ApiModelProperty(value = "机构代码")
|
|
private String branchCode;
|
|
|
|
/** 机构名称 */
|
|
|
|
@Excel(name = "机构名称")
|
|
@ApiModelProperty(value = "机构名称")
|
|
private String branchName;
|
|
|
|
/** 任务状态 */
|
|
|
|
@Excel(name = "任务状态")
|
|
@ApiModelProperty(value = "任务状态")
|
|
private String taskStatus;
|
|
|
|
/** 备注 */
|
|
|
|
@Excel(name = "备注")
|
|
@ApiModelProperty(value = "备注")
|
|
private String remarks;
|
|
|
|
|
|
|
|
|
|
}
|