|
|
|
|
@ -7,6 +7,7 @@ import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
|
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
|
|
|
import com.ruoyi.common.annotation.Excel;
|
|
|
|
|
import com.ruoyi.common.core.domain.BaseEntity;
|
|
|
|
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 投票记录对象 kh_vote_recard
|
|
|
|
|
@ -50,8 +51,9 @@ public class KhVoteRecard extends BaseEntity
|
|
|
|
|
private BigDecimal voteScore;
|
|
|
|
|
|
|
|
|
|
/** 投票时间 */
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
|
|
@Excel(name = "投票时间", width = 30, dateFormat = "yyyy-MM-dd")
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
|
|
@Excel(name = "投票时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
|
|
|
|
private Date voteTime;
|
|
|
|
|
|
|
|
|
|
/** IP地址 */
|
|
|
|
|
|