guoshilong
2023-03-29 9e4491b4307992dd3f816cff6771c7a7ea7fee51
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package cn.gistack.sm.patrol.entity;
 
import java.util.Date;
 
import com.baomidou.mybatisplus.annotation.*;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
import com.fasterxml.jackson.annotation.JsonFormat;
import org.springblade.core.mp.base.BaseEntity;
import org.springframework.format.annotation.DateTimeFormat;
 
/**
 * @Description: 巡查类型
 */
@Data
@TableName("sm_patrol_type")
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@ApiModel(value="sm_patrol_type对象", description="巡查类型")
public class PatrolType extends BaseEntity {
 
    /**类型名称*/
    @ApiModelProperty(value = "类型名称")
    private String name;
}