| | |
| | | package com.sandu.ximon.admin.param; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import lombok.Data; |
| | | |
| | | import javax.validation.constraints.NotEmpty; |
| | | import javax.validation.constraints.NotNull; |
| | | import java.time.LocalDateTime; |
| | | |
| | | @Data |
| | | public class LampPostParam { |
| | |
| | | @NotEmpty |
| | | private String name; |
| | | |
| | | private String macCode; |
| | | @NotEmpty |
| | | private String state; |
| | | private String address; |
| | | |
| | | private String bound; |
| | | @NotEmpty |
| | | private String belongs; |
| | | @NotNull(message = "设备类型不能为空") |
| | | private Integer deviceType; // 0 虚拟灯杆 1 实体灯杆 |
| | | |
| | | |
| | | // private String macCode; |
| | | |
| | | |
| | | /*所属客户*/ |
| | | private String belongsClient; |
| | | |
| | | /*客户id*/ |
| | | private Long clientId; |
| | | |
| | | |
| | | |
| | | |
| | | } |